Skip to content

Commit bc30598

Browse files
Update ggml/src/ggml-cuda/ggml-cuda.cu
Co-authored-by: Johannes Gäßler <[email protected]>
1 parent 3200612 commit bc30598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cuda/ggml-cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3021,7 +3021,7 @@ static bool ggml_backend_cuda_device_supports_op(ggml_backend_dev_t dev, const g
30213021
const int cc = ggml_cuda_info().devices[dev_ctx->device].cc;
30223022
if (b->ne[2]*b->ne[3] > 1 && !ggml_is_transposed(a) && !ggml_is_transposed(b)) {
30233023
if (GGML_CUDA_CC_IS_QY1(cc) && op->op == GGML_OP_MUL_MAT &&
3024-
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
3024+
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
30253025
return false;
30263026
}
30273027
}

0 commit comments

Comments
 (0)