Home
last modified time | relevance | path

Searched refs:kZeroThreshold (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dsummary_image_op.cc221 const float kZeroThreshold = 1e-6; in NormalizeFloatImage() local
225 scale = T(max_val < kZeroThreshold ? 0.0f : 127.0f / max_val); in NormalizeFloatImage()
228 scale = T(image_max < kZeroThreshold ? 0.0f : 255.0f / image_max); in NormalizeFloatImage()
/external/tensorflow/tensorflow/core/summary/
Dsummary_converter.cc150 const float kZeroThreshold = 1e-6; in NormalizeFloatImage() local
154 scale = T(max_val < kZeroThreshold ? 0.0f : 127.0f / max_val); in NormalizeFloatImage()
157 scale = T(image_max < kZeroThreshold ? 0.0f : 255.0f / image_max); in NormalizeFloatImage()