| 308 | } |
| 309 | |
| 310 | std::vector<Matcher<float>> DequantizedArrayNear( |
| 311 | const std::vector<float>& values, const float min, const float max) { |
| 312 | const float quantization_tolerance = (max - min) / 255.0; |
| 313 | return ArrayFloatNear(values, quantization_tolerance); |
| 314 | } |
| 315 | |
| 316 | class QuantizedPadOpTest : public ::testing::Test {}; |
| 317 |
no test coverage detected