Home
last modified time | relevance | path

Searched refs:control_output (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/compiler/
Djs-inlining.cc166 Node* control_output = in InlineCall() local
171 values_effects.push_back(control_output); in InlineCall()
179 control_output); in InlineCall()
214 Node* control_output = graph()->NewNode(common()->Merge(input_count), in InlineCall() local
216 values.push_back(control_output); in InlineCall()
217 effects.push_back(control_output); in InlineCall()
224 ReplaceWithValue(call, value_output, effect_output, control_output); in InlineCall()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Ddependency_optimizer.cc520 for (const auto& control_output : control_outputs[source]) { in TransitiveReduction() local
521 if (control_output.first > highest_control_target) { in TransitiveReduction()
522 highest_control_target = control_output.first; in TransitiveReduction()
551 for (const auto& control_output : control_outputs[source]) { in TransitiveReduction() local
552 const int target = control_output.first; in TransitiveReduction()
554 const int input_slot = control_output.second; in TransitiveReduction()
Dfunction_optimizer.cc1836 for (const ControlOutput& control_output : item.control_outputs()) { in InlineIndirectFunctionCall() local
1838 inlined_node_name(control_output.node_name)); in InlineIndirectFunctionCall()
/external/tensorflow/tensorflow/core/framework/
Dop_def_util.cc839 std::set<string> control_output1(o1.control_output().begin(), in OpDefEqual()
840 o1.control_output().end()); in OpDefEqual()
841 std::set<string> control_output2(o2.control_output().begin(), in OpDefEqual()
842 o2.control_output().end()); in OpDefEqual()
861 std::set<string> control_output(o.control_output().begin(), in OpDefHash() local
862 o.control_output().end()); in OpDefHash()
863 for (const auto& co : control_output) h = Hash64Combine(h, Hash64(co)); in OpDefHash()
Dop_def_builder.cc649 for (StringPiece control_output : control_outputs_) { in Finalize() local
650 FinalizeControlOutput(control_output, op_def, &errors); in Finalize()
Dop_def.proto59 repeated string control_output = 20; field
/external/tensorflow/tensorflow/python/framework/
Dfunction_def_to_graph.py78 for ret_name in fdef.signature.control_output
/external/tensorflow/tensorflow/core/grappler/utils/
Dfunctions.cc339 for (const ControlOutput& control_output : control_outputs_) { in GrapplerFunctionItem() local
340 keep_ops.push_back(control_output.node_name); in GrapplerFunctionItem()