| 81 | } |
| 82 | |
| 83 | void CLInstanceNormalizationLayer::run() |
| 84 | { |
| 85 | ARM_COMPUTE_ERROR_ON_MSG(!_inst_norm_kernel, |
| 86 | "The child class didn't set the CL kernel or function isn't configured"); |
| 87 | schedule_kernel_on_ctx(_ctx, _mean_var_kernel.get()); |
| 88 | schedule_kernel_on_ctx(_ctx, _inst_norm_kernel.get()); |
| 89 | } |
| 90 | |
| 91 | } // namespace arm_compute |
nothing calls this directly
no test coverage detected