Home
last modified time | relevance | path

Searched refs:GetOpWithOutput (Results 1 – 25 of 25) sorted by relevance

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Didentify_l2_normalization.cc58 GetOpWithOutput(*model, div_or_mul_op->inputs[0]), in Run()
59 GetOpWithOutput(*model, div_or_mul_op->inputs[1]), in Run()
69 GetOpWithOutput(*model, sqrt_or_rsqrt_op->inputs[0]); in Run()
102 op_producing_add_input = GetOpWithOutput(*model, add_op->inputs[1 - i]); in Run()
125 Operator* square_op = GetOpWithOutput(*model, sum_op->inputs[0]); in Run()
Dunpartition_embedding_lookup.cc71 auto* op = GetOpWithOutput(*model, indices_partition_output_name); in Run()
116 auto* op = GetOpWithOutput(*model, gather_output_name); in Run()
131 auto* op = GetOpWithOutput(*model, gather_op->inputs[1]); in Run()
164 Operator* div_op = GetOpWithOutput(*model, data_partition_op->inputs[0]); in Run()
165 Operator* mod_op = GetOpWithOutput(*model, data_partition_op->inputs[1]); in Run()
170 CHECK_EQ(mod_op, GetOpWithOutput(*model, indices_partition_op->inputs[1])) in Run()
Didentify_prelu.cc57 const auto* relu_input_op = GetOpWithOutput(*model, add_op->inputs[0]); in Run()
67 const auto* mul_op = GetOpWithOutput(*model, add_op->inputs[1]); in Run()
76 const auto* relu_neg_input_op = GetOpWithOutput(*model, mul_op->inputs[1]); in Run()
92 GetOpWithOutput(*model, relu_neg_input_op->inputs[0]); in Run()
Dfuse_broadcast_into_following_binary.cc74 GetOpWithOutput(*model, binary_op->inputs[0]), in Run()
75 GetOpWithOutput(*model, binary_op->inputs[1]), in Run()
Didentify_l2_pool.cc56 Operator* prev_to_sqrt_op = GetOpWithOutput(*model, sqrt_op->inputs[0]); in Run()
75 square_op = GetOpWithOutput(*model, avpool_op->inputs[0]); in Run()
Dgroup_bidirectional_sequence_ops.cc43 *fw_output = GetOpWithOutput(model, op.inputs[0]); in MatchTwoUnpackOps()
44 *bw_output = GetOpWithOutput(model, op.inputs[1]); in MatchTwoUnpackOps()
68 auto* reverse_output = GetOpWithOutput(model, op->inputs[1]); in MatchDynamicBidirectionalSequenceOutputs()
88 op_it = GetOpWithOutput(model, output_op.inputs[0]); in FindUnidirectionalSequenceOp()
96 op_it = GetOpWithOutput(model, op_it->inputs[0]); in FindUnidirectionalSequenceOp()
164 GetOpWithOutput(model, first_bw_sequence_op_input->inputs[0]); in CheckTwoUnidirectionalSequenceOpsAreValid()
Dremove_trivial_fake_quant.cc42 auto* producing_op = GetOpWithOutput(model, fakequant_op.inputs[0]); in IsFakeQuantTrivial()
Dremove_unused_op.cc96 if (!GetOpWithOutput(*model, input)) { in Run()
Dmake_initial_dequantize_operator.cc41 if (GetOpWithOutput(*model, input_name)) { in AddDequantizeOperatorToInput()
Dfuse_activation_functions.cc42 Operator* op = GetOpWithOutput(*model, ac_op->inputs[0]); in Run()
Dresolve_tensorflow_switch.cc118 !GetOpWithOutput(*model, input)) { in Run()
Dconvert_expanddims_to_reshape.cc86 !GetOpWithOutput(*model, axis_array_name)) { in Run()
Dpropagate_activation_function_into_constants.cc41 auto* src_op = GetOpWithOutput(*model, ac_op->inputs[0]); in Run()
Dconvert_reorder_axes.cc109 const auto* op_producing_input = GetOpWithOutput(*model, input_array_name); in Run()
Dresolve_tensorflow_matmul.cc180 !GetOpWithOutput(*model, previous_op_shape)) { in Run()
Dresolve_constant_concatenation.cc154 const Operator* input_op = GetOpWithOutput(*model, input_name); in Run()
Ddequantize.cc112 auto* op_outputting_array = GetOpWithOutput(*model, array_name); in DequantizeArray()
Didentify_lstm.cc44 *source_op = GetOpWithOutput(model, array_name); in ValidateSourceOp()
Dfuse_binary_into_preceding_affine.cc241 GetOpWithOutput(*model, binary_op->inputs[index_of_variable_input]); in Run()
Dquantize.cc508 const auto* other_op = GetOpWithOutput(*model, input); in Run()
/external/tensorflow/tensorflow/lite/toco/
Dtooling_util.cc209 Operator* GetOpWithOutput(const Model& model, const string& array_name) { in GetOpWithOutput() function
912 QCHECK(GetOpWithOutput(model, output_array)) in CheckNonExistentIOArrays()
923 QCHECK(GetOpWithOutput(model, rnn_state.back_edge_source_array())) in CheckNonExistentIOArrays()
1060 if (!GetOpWithOutput(model, array_entry.first)) { in CheckOperatorOrdering()
1085 if (!GetOpWithOutput(*model, array_entry.first)) { in FixOperatorOrdering()
1259 if (!GetOpWithOutput(*model, output_array_name)) { in FixEdgeArrays()
Dtooling_util.h79 Operator* GetOpWithOutput(const Model& model, const string& array_name);
Ddump_graphviz.cc543 GetOpWithOutput(model, input) == nullptr) { in DumpOperatorEdges()
Dimport_tensorflow.cc635 GetOpWithOutput(*model, reordered_weights_name); in ConvertConvOperator()
711 GetOpWithOutput(*model, reordered_weights_name); in ConvertDepthwiseConvOperator()
1889 GetOpWithOutput(*model, transposed_weights_name); in ConvertTransposeConvOperator()
2116 auto* producer_op = GetOpWithOutput(*model, split[0]); in AddExtraOutputs()
Dexport_tensorflow.cc375 const auto* op = GetOpWithOutput(model, name); in WalkUpToConstantArray()
812 Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]); in ConvertSoftmaxOperator()
852 Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]); in ConvertLogSoftmaxOperator()