Skip to content

Commit 4a5ee2f

Browse files
committed
vulkan: Revert suprious change
1 parent e8963aa commit 4a5ee2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-vulkan/ggml-vulkan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10692,7 +10692,7 @@ static bool ggml_backend_vk_device_supports_op(ggml_backend_dev_t dev, const ggm
1069210692
case GGML_OP_SUB:
1069310693
case GGML_OP_MUL:
1069410694
case GGML_OP_DIV:
10695-
return (op->src[0]->type == GGML_TYPE_F32 || op->src[0]->type == GGML_TYPE_F16) &&
10695+
return (op->src[0]->type == GGML_TYPE_F32 || op->src[0]->type == GGML_TYPE_F16) &&
1069610696
(op->src[1]->type == GGML_TYPE_F32 || op->src[1]->type == GGML_TYPE_F16) &&
1069710697
(op->type == GGML_TYPE_F32 || op->type == GGML_TYPE_F16);
1069810698
case GGML_OP_SILU_BACK:

0 commit comments

Comments
 (0)