Skip to content

Commit 876ee4c

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

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
@@ -3064,7 +3064,7 @@ static bool ggml_backend_cuda_device_supports_op(ggml_backend_dev_t dev, const g
30643064
const int cc = ggml_cuda_info().devices[dev_ctx->device].cc;
30653065
if (b->ne[2]*b->ne[3] > 1 && !ggml_is_transposed(a) && !ggml_is_transposed(b)) {
30663066
if (GGML_CUDA_CC_IS_QY1(cc) && op->op == GGML_OP_MUL_MAT &&
3067-
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
3067+
a->type == GGML_TYPE_F16 && b->type == GGML_TYPE_F16) {
30683068
return false;
30693069
}
30703070
}

0 commit comments

Comments
 (0)