| 37 | namespace detail |
| 38 | { |
| 39 | void validate_all_nodes(Graph &g) |
| 40 | { |
| 41 | auto &nodes = g.nodes(); |
| 42 | |
| 43 | // Create tasks |
| 44 | for (auto &node : nodes) |
| 45 | { |
| 46 | if (node != nullptr) |
| 47 | { |
| 48 | Target assigned_target = node->assigned_target(); |
| 49 | backends::IDeviceBackend &backend = backends::BackendRegistry::get().get_backend(assigned_target); |
| 50 | Status status = backend.validate_node(*node); |
| 51 | ARM_COMPUTE_ERROR_ON_MSG(!bool(status), status.error_description().c_str()); |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void configure_all_tensors(Graph &g) |
| 57 | { |
no test coverage detected