| 95 | |
| 96 | template <typename T> |
| 97 | inline typename std::enable_if<std::is_same<T, int8_t>::value, int8_t>::type |
| 98 | quantize(float val, const UniformQuantizationInfo &info) |
| 99 | { |
| 100 | return quantize_qasymm8_signed(val, info); |
| 101 | } |
| 102 | |
| 103 | template <typename T> |
| 104 | inline typename std::enable_if<std::is_same<T, uint8_t>::value, uint8_t>::type |
no test coverage detected