Skip to content

Commit aabc1da

Browse files
JohannesGaesslerNeoZhangJianyu
authored andcommitted
CUDA: fix min. version for movmatrix (ggml-org#11751)
1 parent 28455fe commit aabc1da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cuda/mma.cuh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "common.cuh"
1717

1818

19-
#if CUDART_VERSION >= 11800
19+
#if CUDART_VERSION >= 11080
2020

2121
static __device__ __forceinline__ int ggml_cuda_movmatrix(const int x) {
2222
int ret = 0;
@@ -50,7 +50,7 @@ static __device__ __forceinline__ int ggml_cuda_movmatrix(const int x) {
5050
return ret_low | ret_high;
5151
}
5252

53-
#endif // CUDART_VERSION >= 11800
53+
#endif // CUDART_VERSION >= 11080
5454

5555

5656
template <typename T>

0 commit comments

Comments
 (0)