| 571 | } |
| 572 | |
| 573 | const char * ggml_backend_dev_description(ggml_backend_dev_t device) { |
| 574 | GGML_ASSERT(device); |
| 575 | return device->iface.get_description(device); |
| 576 | } |
| 577 | |
| 578 | void ggml_backend_dev_memory(ggml_backend_dev_t device, size_t * free, size_t * total) { |
| 579 | GGML_ASSERT(device); |
no outgoing calls