fix: return true in the switch case

This commit is contained in:
unknown 2025-12-15 19:30:47 +08:00
parent bc8bcaa984
commit 7209a54f4a
1 changed files with 2 additions and 0 deletions

View File

@ -2576,6 +2576,8 @@ static bool ggml_backend_cann_supports_op(ggml_backend_dev_t dev, const ggml_ten
return false;
}
}
case GGML_OP_CONV_TRANSPOSE_1D:
return true;
case GGML_OP_SCALE:
float bias;
memcpy(&bias, (const float *) (op->op_params) + 1, sizeof(float));