Skip to content

Commit 08737ef

Browse files
committed
cuda : fix convert function (#1412)
1 parent bda4d7c commit 08737ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml-cuda.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ static dequantize_mul_mat_vec_cuda_t ggml_get_dequantize_mul_mat_vec_cuda(ggml_t
414414
case GGML_TYPE_Q8_0:
415415
return dequantize_mul_mat_vec_q8_0_cuda;
416416
case GGML_TYPE_F16:
417-
return dequantize_mul_mat_vec_q8_0_cuda;
417+
return convert_mul_mat_vec_f16_cuda;
418418
default:
419419
return nullptr;
420420
}

0 commit comments

Comments
 (0)