| 54 | |
| 55 | template <typename U> |
| 56 | void fill_quantized(U &&tensor, int i) |
| 57 | { |
| 58 | ARM_COMPUTE_ASSERT(is_data_type_quantized(tensor.data_type())); |
| 59 | library->fill_tensor_uniform(tensor, i); |
| 60 | } |
| 61 | |
| 62 | template <typename U> |
| 63 | void fill(U &&tensor, int i, int32_t min, int32_t max) |
no test coverage detected