| 50 | } |
| 51 | |
| 52 | bool are_context_options_valid(const AclContextOptions *options) |
| 53 | { |
| 54 | ARM_COMPUTE_ASSERT_NOT_NULLPTR(options); |
| 55 | return arm_compute::utils::is_in(options->mode, {AclPreferFastRerun, AclPreferFastStart}); |
| 56 | } |
| 57 | |
| 58 | arm_compute::IContext *create_context(AclTarget target, const AclContextOptions *options) |
| 59 | { |
no test coverage detected