HomeSort by relevance Sort by last modified time
    Searched refs:operators (Results 26 - 50 of 331) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
identify_relu1.cc 31 auto it = model->operators.begin();
32 for (; it != model->operators.end(); ++it) {
61 const auto op_it = model->operators.begin() + op_index;
103 model->operators.emplace(op_it, relu1_op);
107 // Erase op scalar inputs & operators. Note that we preserve the non-scalar
112 model->operators.erase(FindOperator(model, op_0));
113 model->operators.erase(FindOperator(model, op_1));
remove_final_dequantize_op.cc 29 const auto dequantize_it = model->operators.begin() + op_index;
55 model->operators.erase(dequantize_it);
unfuse_activation_functions.cc 29 const auto it = model->operators.begin() + op_index;
58 model->operators.emplace(it + 1, ac_op);
drop_im2col_arrays.cc 23 auto conv_it = model->operators.begin() + op_index;
identify_lstm.cc 29 auto it = model->operators.begin();
30 for (; it != model->operators.end(); ++it) {
78 // Successfully matched. Optionally return matching input operators.
126 // Successfully matched. Optionally return matching input operators.
191 // Successfully matched. Optionally return matching input operators.
214 auto op_it = model->operators.begin() + op_index;
325 model->operators.emplace(op_it, lstm_cell_op);
345 // Delete arrays and operators replaced by the LSTM cell operator. Order is
346 // important - DeleteArrayIfUnused() only succeeds if dependent operators
348 model->operators.erase(FindOperator(model, *final_output_mul))
    [all...]
make_initial_dequantize_operator.cc 29 // flags.input_array()). It has to wait for any existing operators that
66 for (auto& other_op : model->operators) {
79 model->operators.emplace(model->operators.begin(), image_input_op);
103 const auto it = model->operators.begin() + op_index;
resolve_tensorflow_switch.cc 28 const auto switch_it = model->operators.begin() + op_index;
73 for (const auto& other_op : model->operators) {
89 for (const auto& other_op : model->operators) {
119 model->operators.erase(switch_it);
convert_trivial_stack_to_reshape.cc 29 auto stack_it = model->operators.begin() + op_index;
73 const auto reshape_it = model->operators.emplace(stack_it, reshape_op);
76 model->operators.erase(stack_it);
convert_trivial_transpose_to_reshape.cc 25 auto transpose_it = model->operators.begin() + op_index;
77 const auto reshape_it = model->operators.emplace(transpose_it, reshape_op);
80 model->operators.erase(transpose_it);
convert_expanddims_to_reshape.cc 29 auto expand_it = model->operators.begin() + op_index;
93 const auto reshape_it = model->operators.emplace(expand_it, reshape_op);
96 model->operators.erase(expand_it);
convert_pure_conv_to_depthwise.cc 28 auto conv_it = model->operators.begin() + op_index;
73 model->operators.emplace(conv_it, depthwiseconv_op);
76 model->operators.erase(conv_it);
resolve_reorder_axes.cc 54 auto reorder_it = model->operators.begin() + op_index;
86 for (const auto& other_op : model->operators) {
98 model->operators.erase(reorder_it);
resolve_tensorflow_concat.cc 29 auto concat_it = model->operators.begin() + op_index;
70 auto depth_concat_it = model->operators.emplace(concat_it, concatenation_op);
81 model->operators.erase(concat_it);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
ExistsFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
NotFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
NumericFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
AndFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
DivideFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
EqualFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
GreaterFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
GreaterOrEqualFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
LessFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
LessOrEqualFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
ModuloFunction.java 17 package com.google.clearsilver.jsilver.functions.operators;
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava-async-util/0.21.0/
rxjava-async-util-0.21.0.jar 

Completed in 328 milliseconds

12 3 4 5 6 7 8 91011>>