| 38 | } |
| 39 | |
| 40 | Target get_default_target() |
| 41 | { |
| 42 | if (is_target_supported(Target::NEON)) |
| 43 | { |
| 44 | return Target::NEON; |
| 45 | } |
| 46 | if (is_target_supported(Target::CL)) |
| 47 | { |
| 48 | return Target::CL; |
| 49 | } |
| 50 | ARM_COMPUTE_ERROR("No backend exists!"); |
| 51 | } |
| 52 | |
| 53 | void force_target_to_graph(Graph &g, Target target) |
| 54 | { |
no test coverage detected