ggml : add error handling to graph_compute (#1714)

This commit is contained in:
Finn Voorhees
2024-01-03 08:39:43 -05:00
committed by GitHub
parent 14c57952f7
commit a3d0aa73d1
10 changed files with 38 additions and 23 deletions

View File

@ -70,7 +70,7 @@ extern "C" {
void (*graph_plan_compute)(ggml_backend_t backend, ggml_backend_graph_plan_t plan);
// compute graph without a plan
void (*graph_compute)(ggml_backend_t backend, struct ggml_cgraph * cgraph);
bool (*graph_compute)(ggml_backend_t backend, struct ggml_cgraph * cgraph);
// check if the backend supports an operation
bool (*supports_op)(ggml_backend_t backend, const struct ggml_tensor * op);