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

Function ggml_get_name

ggml.c:3025–3028  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3023}
3024
3025const char * ggml_get_name(const struct ggml_tensor * tensor) {
3026 if (tensor == NULL) return NULL;
3027 return tensor->name;
3028}
3029
3030struct ggml_tensor * ggml_set_name(struct ggml_tensor * tensor, const char * name) {
3031 if (tensor == NULL) return NULL;

Callers 13

ggml_graph_printFunction · 0.70
create_tensor_forMethod · 0.70
load_data_forMethod · 0.70
llm_load_tensorsFunction · 0.70
get_k_quant_typeFunction · 0.70
copy_tensor_by_nameFunction · 0.50
apply_loraFunction · 0.50
load_llama_lora_ggufFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected