| 113 | } |
| 114 | |
| 115 | Status NEReduceMean::validate(const ITensorInfo *input, |
| 116 | const Coordinates &reduction_axis, |
| 117 | bool keep_dims, |
| 118 | const ITensorInfo *output) |
| 119 | { |
| 120 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "NEReduceMean::validate"); |
| 121 | return validate_config(input, reduction_axis, keep_dims, output); |
| 122 | } |
| 123 | |
| 124 | void NEReduceMean::configure(ITensor *input, const Coordinates &reduction_axis, bool keep_dims, ITensor *output) |
| 125 | { |
nothing calls this directly
no test coverage detected