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

Function ggml_backend_name

smallthinker/ggml/src/ggml-backend.cpp:203–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203const char * ggml_backend_name(ggml_backend_t backend) {
204 if (backend == NULL) {
205 return "NULL";
206 }
207 return backend->iface.get_name(backend);
208}
209
210void ggml_backend_free(ggml_backend_t backend) {
211 if (backend == NULL) {

Callers 11

clip_ctxMethod · 0.50
create_backendFunction · 0.50
load_all_dataMethod · 0.50
mainFunction · 0.50
evalMethod · 0.50
eval_gradMethod · 0.50
mainFunction · 0.50
test_roundtripFunction · 0.50
test_gguf_set_kvFunction · 0.50

Calls 1

get_nameMethod · 0.45

Tested by 6

mainFunction · 0.40
evalMethod · 0.40
eval_gradMethod · 0.40
mainFunction · 0.40
test_roundtripFunction · 0.40
test_gguf_set_kvFunction · 0.40