| 586 | } |
| 587 | |
| 588 | static bool ggml_gallocr_is_own(ggml_gallocr_t galloc, struct ggml_tensor * t) { |
| 589 | return ggml_gallocr_hash_get(galloc, t)->allocated; |
| 590 | } |
| 591 | |
| 592 | static bool ggml_gallocr_is_allocated(ggml_gallocr_t galloc, struct ggml_tensor * t) { |
| 593 | return t->data != NULL // tensor data already set externally |
no test coverage detected