MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / ggml_vec_norm_inv_f32

Function ggml_vec_norm_inv_f32

ggml.c:1567–1570  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1565}
1566
1567inline static void ggml_vec_norm_inv_f32(const int n, float * s, const float * x) {
1568 ggml_vec_norm_f32(n, s, x);
1569 *s = 1.f/(*s);
1570}
1571
1572inline static void ggml_vec_argmax_f32(const int n, int * s, const float * x) {
1573 float max = -INFINITY;

Callers 1

ggml_opt_lbfgsFunction · 0.70

Calls 1

ggml_vec_norm_f32Function · 0.70

Tested by

no test coverage detected