fix: typo cuda_SUCCESS -> cudaSuccess

This commit is contained in:
2026-05-29 19:27:30 +00:00
parent 74514e2680
commit 0435e229bd

View File

@@ -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;
}