fix: typo cuda_SUCCESS -> cudaSuccess
This commit is contained in:
@@ -163,7 +163,7 @@ int main() {
|
||||
size_t smem = TILE_SZ * 2 + 16 + 128;
|
||||
test_tma_subtile_kernel<<<1, NUM_THREADS, smem>>>(d_verify, d_tma_k, SK, n_kt);
|
||||
cudaError_t err = cudaDeviceSynchronize();
|
||||
if (err != cuda_SUCCESS) {
|
||||
if (err != cudaSuccess) {
|
||||
printf("CUDA ERROR: %s\n", cudaGetErrorString(err)); return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user