From 5afc5cf842ab010730b73a7f249b1be1f34470a8 Mon Sep 17 00:00:00 2001 From: Xiaodong Ye Date: Thu, 25 Jul 2024 09:04:28 +0800 Subject: [PATCH] Fix CI build failure Signed-off-by: Xiaodong Ye --- ggml/src/ggml-cuda/common.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/common.cuh b/ggml/src/ggml-cuda/common.cuh index 658c72fdf..60fc0c970 100644 --- a/ggml/src/ggml-cuda/common.cuh +++ b/ggml/src/ggml-cuda/common.cuh @@ -317,7 +317,7 @@ void ggml_cuda_error(const char * stmt, const char * func, const char * file, in #define CUDA_CHECK(err) CUDA_CHECK_GEN(err, cudaSuccess, cudaGetErrorString) #if CUDART_VERSION >= 12000 || defined(GGML_USE_MUSA) - static const char * cublas_get_error_str(const mublasStatus_t err) { + static const char * cublas_get_error_str(const cublasStatus_t err) { #ifndef GGML_USE_MUSA return cublasGetStatusString(err); #else