Skip to content

Commit 4d719a6

Browse files
authored
cuda : check if this fixes Pascal card regression (#3882)
1 parent 183b3fa commit 4d719a6

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
@@ -7420,7 +7420,7 @@ static void ggml_cuda_mul_mat(const ggml_tensor * src0, const ggml_tensor * src1
74207420
} else if (all_on_device && !use_tensor_cores && src0->type == GGML_TYPE_F16 && !ggml_is_contiguous(src0) && !ggml_is_transposed(src1) && src1->ne[1] == 1) {
74217421
// KQV single-batch
74227422
ggml_cuda_mul_mat_vec_nc(src0, src1, dst);
7423-
} else if (all_on_device && src0->type == GGML_TYPE_F16 && src1->type == GGML_TYPE_F32 && !ggml_is_transposed(src0) && !ggml_is_transposed(src1)) {
7423+
} else if (all_on_device && use_tensor_cores && src0->type == GGML_TYPE_F16 && src1->type == GGML_TYPE_F32 && !ggml_is_transposed(src0) && !ggml_is_transposed(src1)) {
74247424
// KQ + KQV multi-batch
74257425
ggml_cuda_mul_mat_mat_batched_cublas(src0, src1, dst);
74267426
} else if (src0->type == GGML_TYPE_F32) {

0 commit comments

Comments
 (0)