Rename files to .cu and fix IDX2C usage

This commit is contained in:
2024-02-21 20:03:04 +01:00
parent 15c0cd30f0
commit 035f3b053b
9 changed files with 72 additions and 36 deletions

View File

@@ -24,7 +24,7 @@ do { \
cublasStatus_t result = call; \
if (result != CUBLAS_STATUS_SUCCESS) { \
fprintf(stderr, "cuBLAS error at %s:%d code=%d\n", \
__FILE__, __LINE__, static_cast<int>(result)); \
__FILE__, __LINE__, static_cast<unsigned int>(result)); \
exit(EXIT_FAILURE); \
} \
} while (0)