Skip to content

Commit 4de8d27

Browse files
committed
testing
1 parent 11bf350 commit 4de8d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/lite/micro/test_helpers.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ inline float SymmetricScaleFromMinMax(const float min, const float max) {
326326
template <typename T>
327327
inline int ZeroPointFromMinMax(const float min, const float max) {
328328
return static_cast<int>(std::numeric_limits<T>::min()) +
329-
static_cast<int>(std::roundf(-min / ScaleFromMinMax<T>(min, max)));
329+
static_cast<int>(roundf(-min / ScaleFromMinMax<T>(min, max)));
330330
}
331331

332332
} // namespace testing

0 commit comments

Comments
 (0)