Skip to content

Commit

Permalink
CUDA: fix min. version for movmatrix (ggml-org#11751)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesGaessler authored Feb 8, 2025
1 parent 3ab410f commit d80be89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ggml/src/ggml-cuda/mma.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "common.cuh"


#if CUDART_VERSION >= 11800
#if CUDART_VERSION >= 11080

static __device__ __forceinline__ int ggml_cuda_movmatrix(const int x) {
int ret = 0;
Expand Down Expand Up @@ -50,7 +50,7 @@ static __device__ __forceinline__ int ggml_cuda_movmatrix(const int x) {
return ret_low | ret_high;
}

#endif // CUDART_VERSION >= 11800
#endif // CUDART_VERSION >= 11080


template <typename T>
Expand Down

0 comments on commit d80be89

Please sign in to comment.