Skip to content

Commit 39ab3de

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

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
@@ -3012,7 +3012,7 @@ static bool ggml_backend_cuda_device_supports_op(ggml_backend_dev_t dev, const g
30123012
const int cc = ggml_cuda_info().devices[dev_ctx->device].cc;
30133013
if (b->ne[2]*b->ne[3] > 1 && !ggml_is_transposed(a) && !ggml_is_transposed(b)) {
30143014
if (GGML_CUDA_CC_IS_QY1(cc) && op->op == GGML_OP_MUL_MAT &&
3015-
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
3015+
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
30163016
return false;
30173017
}
30183018
}

0 commit comments

Comments
 (0)