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

Function ggml_format_name

ggml.c:3037–3043  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3035}
3036
3037struct ggml_tensor * ggml_format_name(struct ggml_tensor * tensor, const char * fmt, ...) {
3038 va_list args;
3039 va_start(args, fmt);
3040 vsnprintf(tensor->name, sizeof(tensor->name), fmt, args);
3041 va_end(args);
3042 return tensor;
3043}
3044
3045struct ggml_tensor * ggml_view_tensor(
3046 struct ggml_context * ctx,

Callers 15

ggml_view_tensorFunction · 0.70
ggml_cpy_implFunction · 0.70
ggml_cont_implFunction · 0.70
ggml_cont_4dFunction · 0.70
ggml_reshapeFunction · 0.70
ggml_reshape_1dFunction · 0.70
ggml_reshape_2dFunction · 0.70
ggml_reshape_3dFunction · 0.70
ggml_reshape_4dFunction · 0.70
ggml_view_implFunction · 0.70
ggml_permuteFunction · 0.70
ggml_transposeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected