nakatamaho / mplapack

The MPLAPACK: multiple precision version of BLAS and LAPACK
Other
80 stars 11 forks source link

Texture References are deprecated in CUDA 12 #68

Closed dadeba closed 1 year ago

dadeba commented 1 year ago

In CUDA kernels for DD GEMM routines, texture references are not available anymore in CUDA 12. So need to replace them with texture objects.

ref. https://developer.nvidia.com/blog/cuda-pro-tip-kepler-texture-objects-improve-performance-and-flexibility/

dadeba commented 1 year ago

I am working to replace the texture reference with array access. The modification works and performs slightly better than the original.