add optional activation scales to mul_mat and mul_mat_id tensors

This commit is contained in:
Ruben Ortlam
2026-09-18 14:30:39 +02:00
parent 3226b4782a
commit c902192589
+10 -2
View File
@@ -3345,7 +3345,11 @@ struct ggml_tensor * ggml_mul_mat_ext(
result->src[2] = scale_weight;
}
GGML_UNUSED(scale_activations);
if (scale_activations) {
GGML_ASSERT(ggml_can_repeat(scale_activations, b));
result->src[3] = scale_activations;
}
return result;
}
@@ -3430,7 +3434,11 @@ struct ggml_tensor * ggml_mul_mat_id_ext(
result->src[3] = s;
}
GGML_UNUSED(scale_activations);
if (scale_activations) {
GGML_ASSERT(ggml_can_repeat(scale_activations, b));
result->src[4] = scale_activations;
}
return result;
}