| 134 | } |
| 135 | |
| 136 | std::unique_ptr<arm_compute::IFunction> NEDeviceBackend::configure_node(INode &node, GraphContext &ctx) |
| 137 | { |
| 138 | ARM_COMPUTE_LOG_GRAPH_VERBOSE("Configuring CPU node with ID : " << node.id() << std::endl); |
| 139 | ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::NEON); |
| 140 | |
| 141 | // Configure node |
| 142 | return NEFunctionFactory::create(&node, ctx); |
| 143 | } |
| 144 | |
| 145 | arm_compute::Status NEDeviceBackend::validate_node(INode &node) |
| 146 | { |
nothing calls this directly
no test coverage detected