We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21b796b commit 214838eCopy full SHA for 214838e
1 file changed
ggml/src/ggml-openvino/ggml-openvino.cpp
@@ -798,6 +798,9 @@ static bool is_op_unsupported_case(const ggml_tensor * op) {
798
}
799
case GGML_OP_ADD:
800
case GGML_OP_MUL: {
801
+ if (op->src[1]->op == GGML_OP_PERMUTE) {
802
+ return true;
803
+ }
804
for (int i = 0; i < 4; i++) {
805
if (op->src[0]->ne[i] != op->src[1]->ne[i] && (op->src[0]->ne[i] != 1 && op->src[1]->ne[i] != 1)) {
806
return true;
0 commit comments