OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kZeroThreshold
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/core/kernels/
summary_image_op.cc
221
const float
kZeroThreshold
= 1e-6;
225
scale = T(max_val <
kZeroThreshold
? 0.0f : 127.0f / max_val);
228
scale = T(image_max <
kZeroThreshold
? 0.0f : 255.0f / image_max);
/external/tensorflow/tensorflow/core/summary/
summary_converter.cc
149
const float
kZeroThreshold
= 1e-6;
153
scale = T(max_val <
kZeroThreshold
? 0.0f : 127.0f / max_val);
156
scale = T(image_max <
kZeroThreshold
? 0.0f : 255.0f / image_max);
Completed in 1644 milliseconds