OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:image_max
(Results
1 - 4
of
4
) sorted by null
/external/tensorflow/tensorflow/core/kernels/
quantized_conv_ops_test.cc
64
const float
image_max
= 12.0f;
local
74
FloatTensorToQuantized<quint8>(image_float, image_min,
image_max
);
95
AddInputFromArray<float>(TensorShape({1}), {
image_max
});
285
const float
image_max
= 12.0f;
local
291
FloatTensorToQuantized<quint8>(image_float, image_min,
image_max
);
306
AddInputFromArray<float>(TensorShape({1}), {
image_max
});
summary_image_op.cc
202
float
image_max
= -image_min;
local
215
image_max
= std::max(
image_max
, value);
224
float max_val = std::max(std::abs(image_min), std::abs(
image_max
));
228
scale = T(
image_max
< kZeroThreshold ? 0.0f : 255.0f /
image_max
);
mkl_quantized_conv_ops_test.cc
113
const float
image_max
= 255.0f;
local
124
FloatTensorToQuantized<quint8>(image_float, image_min,
image_max
);
148
AddInputFromArray<float>(TensorShape({1}), {
image_max
});
/external/tensorflow/tensorflow/core/summary/
summary_converter.cc
130
float
image_max
= -image_min;
local
143
image_max
= std::max(
image_max
, value);
152
const float max_val = std::max(std::abs(image_min), std::abs(
image_max
));
156
scale = T(
image_max
< kZeroThreshold ? 0.0f : 255.0f /
image_max
);
Completed in 407 milliseconds