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

Function ggml_format_name

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

Source from the content-addressed store, hash-verified

1850}
1851
1852struct ggml_tensor * ggml_format_name(struct ggml_tensor * tensor, const char * fmt, ...) {
1853 va_list args;
1854 va_start(args, fmt);
1855 vsnprintf(tensor->name, sizeof(tensor->name), fmt, args);
1856 va_end(args);
1857 return tensor;
1858}
1859
1860struct ggml_tensor * ggml_view_tensor(
1861 struct ggml_context * ctx,

Callers 15

filter_nonzero_rowsMethod · 0.85
runFunction · 0.85
build_graph_piterFunction · 0.85
run_pcaFunction · 0.85
cbMethod · 0.85
save_imatrixMethod · 0.85
build_samplingMethod · 0.85
graph_get_cbMethod · 0.85
llama_kv_cacheMethod · 0.85
assign_namesFunction · 0.85
add_sentinelMethod · 0.85

Calls

no outgoing calls

Tested by 2

assign_namesFunction · 0.68
add_sentinelMethod · 0.68