You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The line 376 in the file "cudaTensorCoreGemm.cu" :
"float *tile_ptr = shmem_warp_tile_ptr + i * SHMEM_STRIDE * K + j * N;"
should be modified to "float *tile_ptr = shmem_warp_tile_ptr + i * SHMEM_STRIDE * M + j * N;"
This is applied to the tf32 and double precision.
For the result matrix, there is nothing about the K dimension when streaming from the fragment to the shared memory.
The text was updated successfully, but these errors were encountered:
The line 376 in the file "cudaTensorCoreGemm.cu" :
"float *tile_ptr = shmem_warp_tile_ptr + i * SHMEM_STRIDE * K + j * N;"
should be modified to "float *tile_ptr = shmem_warp_tile_ptr + i * SHMEM_STRIDE * M + j * N;"
This is applied to the tf32 and double precision.
For the result matrix, there is nothing about the K dimension when streaming from the fragment to the shared memory.
The text was updated successfully, but these errors were encountered: