MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_group_norm_inplace

Function ggml_group_norm_inplace

subprojects/llama.cpp/ggml/src/ggml.c:3127–3133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3125}
3126
3127struct ggml_tensor * ggml_group_norm_inplace(
3128 struct ggml_context * ctx,
3129 struct ggml_tensor * a,
3130 int n_groups,
3131 float eps) {
3132 return ggml_group_norm_impl(ctx, a, n_groups, eps, true);
3133}
3134
3135// ggml_l2_norm
3136

Callers

nothing calls this directly

Calls 1

ggml_group_norm_implFunction · 0.85

Tested by

no test coverage detected