| 155 | } |
| 156 | |
| 157 | CLTuningParams CLTuningParametersListExhaustive::operator[](size_t index) |
| 158 | { |
| 159 | ARM_COMPUTE_ERROR_ON(index >= size()); |
| 160 | auto coords = index2coords(search_space_shape, index); |
| 161 | return CLTuningParams(coords[0] + 1U, coords[1] + 1U, coords[2] + 1U, static_cast<int>(coords[3])); |
| 162 | } |
| 163 | |
| 164 | CLTuningParametersListExhaustive::CLTuningParametersListExhaustive(const cl::NDRange &gws, CLTuningInfo tuning_info) |
| 165 | { |
nothing calls this directly
no test coverage detected