Closed dadeba closed 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/
I am working to replace the texture reference with array access. The modification works and performs slightly better than the original.
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/