Skip to content

Commit a09f919

Browse files
Fixed CUDA runtime version check (#1879)
1 parent bed9275 commit a09f919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml-cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static_assert(sizeof(half) == sizeof(ggml_fp16_t), "wrong fp16 size");
2525
} \
2626
} while (0)
2727

28-
#if CUDART_VERSION >= 12
28+
#if CUDART_VERSION >= 12000
2929
#define CUBLAS_CHECK(err) \
3030
do { \
3131
cublasStatus_t err_ = (err); \

0 commit comments

Comments
 (0)