| 190 | } |
| 191 | |
| 192 | std::unique_ptr<arm_compute::IFunction> CLDeviceBackend::configure_node(INode &node, GraphContext &ctx) |
| 193 | { |
| 194 | ARM_COMPUTE_LOG_GRAPH_VERBOSE("Configuring CL node with ID : " << node.id() << std::endl); |
| 195 | ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::CL); |
| 196 | |
| 197 | // Configure node |
| 198 | return CLFunctionFactory::create(&node, ctx); |
| 199 | } |
| 200 | |
| 201 | arm_compute::Status CLDeviceBackend::validate_node(INode &node) |
| 202 | { |
no test coverage detected