OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:input_minmax
(Results
1 - 4
of
4
) sorted by null
/external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
hardcode_min_max.cc
41
const auto&
input_minmax
= input_array.GetMinMax();
local
44
im2col_minmax.min =
input_minmax
.min;
45
im2col_minmax.max =
input_minmax
.max;
58
const auto&
input_minmax
= input_array.GetMinMax();
local
61
output_minmax.min =
input_minmax
.min >= 0. ? 0. : -1.;
62
output_minmax.max =
input_minmax
.max <= 0. ? 0. : 1.;
138
const auto&
input_minmax
= input_array.GetMinMax();
local
141
output_minmax.min = std::min(
input_minmax
.min, 0.);
142
output_minmax.max = std::max(
input_minmax
.max, 0.);
155
const auto&
input_minmax
= input_array.GetMinMax()
local
[
all
...]
make_initial_dequantize_operator.cc
84
const auto&
input_minmax
= input_array.GetMinMax();
local
86
dequantized_input_minmax =
input_minmax
;
89
model->flags,
input_minmax
, &input_qparams);
resolve_constant_concatenation.cc
121
const MinMax&
input_minmax
= input_array->GetMinMax();
local
122
concat_min = std::min(concat_min,
input_minmax
.min);
123
concat_max = std::max(concat_max,
input_minmax
.max);
/external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.cc
1253
MinMax
input_minmax
;
local
[
all
...]
Completed in 537 milliseconds