We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1e61d commit cfc9544Copy full SHA for cfc9544
ggml/src/ggml-metal.m
@@ -806,15 +806,6 @@ static bool ggml_metal_supports_op(const struct ggml_backend_metal_context * ctx
806
if (op->src[0]->ne[0] == 256) {
807
return false;
808
}
809
- {
810
- float logit_softcap;
811
-
812
- memcpy(&logit_softcap, ((const float *) op->op_params) + 2, sizeof(logit_softcap));
813
814
- if (logit_softcap != 0.0f) {
815
- return false;
816
- }
817
818
return ctx->support_simdgroup_mm; // TODO: over-restricted for vec-kernels
819
case GGML_OP_SSM_CONV:
820
case GGML_OP_SSM_SCAN:
0 commit comments