File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -822,7 +822,11 @@ GGML_CALL static enum ggml_status ggml_backend_cpu_graph_compute(ggml_backend_t
822
822
GGML_CALL static bool ggml_backend_cpu_supports_op (ggml_backend_t backend , const struct ggml_tensor * op ) {
823
823
switch (op -> op ) {
824
824
case GGML_OP_CPY :
825
- return op -> type != GGML_TYPE_IQ2_XXS && op -> type != GGML_TYPE_IQ2_XS && op -> type != GGML_TYPE_IQ1_S ; // missing type_traits.from_float
825
+ return
826
+ op -> type != GGML_TYPE_IQ2_XXS &&
827
+ op -> type != GGML_TYPE_IQ2_XS &&
828
+ op -> type != GGML_TYPE_IQ1_S &&
829
+ op -> type != GGML_TYPE_IQ1_M ; // missing type_traits.from_float
826
830
case GGML_OP_MUL_MAT :
827
831
return op -> src [1 ]-> type == GGML_TYPE_F32 || op -> src [1 ]-> type == ggml_internal_get_type_traits (op -> src [0 ]-> type ).vec_dot_type ;
828
832
default :
You can’t perform that action at this time.
0 commit comments