| 86 | // backend |
| 87 | |
| 88 | ggml_backend_t ggml_get_backend(const struct ggml_tensor * tensor) { |
| 89 | return tensor->buffer ? tensor->buffer->backend : NULL; |
| 90 | } |
| 91 | |
| 92 | const char * ggml_backend_name(ggml_backend_t backend) { |
| 93 | if (backend == NULL) { |
no outgoing calls
no test coverage detected