| 175 | |
| 176 | template <typename T> |
| 177 | inline typename std::enable_if<std::is_same<T, int8_t>::value, int8x16_t>::type |
| 178 | vquantize(float32x4x4_t val, const UniformQuantizationInfo &info) |
| 179 | { |
| 180 | return vquantize_signed(val, info); |
| 181 | } |
| 182 | |
| 183 | template <typename T> |
| 184 | inline typename std::enable_if<std::is_same<T, uint8_t>::value, uint8x16_t>::type |
no test coverage detected