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.cc44 GetOpWithOutput(*model, div_or_mul_op->inputs[0]), in Run()
45 GetOpWithOutput(*model, div_or_mul_op->inputs[1]), in Run()
55 GetOpWithOutput(*model, sqrt_or_rsqrt_op->inputs[0]); in Run()
88 op_producing_add_input = GetOpWithOutput(*model, add_op->inputs[1 - i]); in Run()
111 Operator* square_op = GetOpWithOutput(*model, sum_op->inputs[0]); 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()
Dunpartition_embedding_lookup.cc73 auto* op = GetOpWithOutput(*model, indices_partition_output_name); in Run()
118 auto* op = GetOpWithOutput(*model, gather_output_name); in Run()
133 auto* op = GetOpWithOutput(*model, gather_op->inputs[1]); in Run()
166 Operator* div_op = GetOpWithOutput(*model, data_partition_op->inputs[0]); in Run()
167 Operator* mod_op = GetOpWithOutput(*model, data_partition_op->inputs[1]); in Run()
172 CHECK_EQ(mod_op, GetOpWithOutput(*model, indices_partition_op->inputs[1])) 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.cc42 Operator* prev_to_sqrt_op = GetOpWithOutput(*model, sqrt_op->inputs[0]); in Run()
61 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()
Dmake_initial_dequantize_operator.cc42 if (GetOpWithOutput(*model, input_name)) { in AddDequantizeOperatorToInput()
Dresolve_tensorflow_switch.cc127 !GetOpWithOutput(*model, input)) { in Run()
Dfuse_activation_functions.cc42 Operator* op = GetOpWithOutput(*model, ac_op->inputs[0]); in Run()
Dconvert_expanddims_to_reshape.cc93 !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.cc110 const auto* op_producing_input = GetOpWithOutput(*model, input_array_name); in Run()
Didentify_dilated_conv.cc129 auto* pre_stb_pad_op = GetOpWithOutput(*model, stb_op->inputs[0]); in ResolveDilatedConv()
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_nearest_upsample.cc96 Operator* next_op = GetOpWithOutput(*model, output); in Run()
Didentify_lstm.cc44 *source_op = GetOpWithOutput(model, array_name); in ValidateSourceOp()
Dfuse_binary_into_preceding_affine.cc256 GetOpWithOutput(*model, binary_op->inputs[index_of_variable_input]); in Run()
Dquantize.cc557 const auto* other_op = GetOpWithOutput(*model, input); in Run()
/external/tensorflow/tensorflow/lite/toco/
Dtooling_util.cc161 GetOpWithOutput(*model, array_name) == nullptr) { in DeleteArrayIfUnused()
181 GetOpWithOutput(*model, array_name); in DeleteArrayIfUnusedOutsideOfOp()
225 Operator* GetOpWithOutput(const Model& model, const std::string& array_name) { in GetOpWithOutput() function
941 QCHECK(GetOpWithOutput(model, output_array)) in CheckNonExistentIOArrays()
952 QCHECK(GetOpWithOutput(model, rnn_state.back_edge_source_array())) in CheckNonExistentIOArrays()
1091 if (!GetOpWithOutput(model, array_entry.first)) { in CheckOperatorOrdering()
1116 if (!GetOpWithOutput(*model, array_entry.first)) { in FixOperatorOrdering()
1290 if (!GetOpWithOutput(*model, output_array_name)) { in FixEdgeArrays()
Dtooling_util.h75 Operator* GetOpWithOutput(const Model& model, const std::string& array_name);
Dimport_tensorflow.cc847 GetOpWithOutput(*model, reordered_weights_name); in ConvertConvOperator()
929 GetOpWithOutput(*model, reordered_weights_name); in ConvertDepthwiseConvOperator()
2014 GetOpWithOutput(*model, transposed_weights_name); in ConvertTransposeConvOperator()
2234 if (GetOpWithOutput(*model, consumed_array)) { in AddExtraOutputs()
2250 auto* producer_op = GetOpWithOutput(*model, split[0]); in AddExtraOutputs()
Ddump_graphviz.cc548 GetOpWithOutput(model, input) == nullptr) { in DumpOperatorEdges()
Dexport_tensorflow.cc379 const auto* op = GetOpWithOutput(model, name); in WalkUpToConstantArray()
817 Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]); in ConvertSoftmaxOperator()
858 Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]); in ConvertLogSoftmaxOperator()