Home
last modified time | relevance | path

Searched refs:branch_count (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dconditional_simplifier.cc55 if (conditional->branch_count() > 1) { in TryRemoveConditional()
67 if (branch_index < 0 || branch_index >= conditional->branch_count()) { in TryRemoveConditional()
68 branch_index = conditional->branch_count() - 1; in TryRemoveConditional()
Dflatten_call_graph.cc52 for (int b = 0; b < instruction->branch_count(); ++b) { in ReplaceCalledComputation()
53 if (b == instruction->branch_count() - 1) { in ReplaceCalledComputation()
Dhlo_ordering.cc78 for (int j = 0; j < a_ancestor->branch_count(); ++j) { in ExecutesBefore()
158 for (int j = 0; j < b.defining_instruction()->branch_count(); ++j) { in IsDefinedBefore()
235 for (int j = 0; j < conditional->branch_count(); ++j) { in UseIsBeforeValueDefinition()
Dhlo_dataflow_analysis.cc377 std::vector<const InstructionValueSet*> inputs(conditional->branch_count()); in UpdateConditionalValueSet()
378 for (int j = 0; j < conditional->branch_count(); ++j) { in UpdateConditionalValueSet()
517 for (int j = 0; j < conditional->branch_count(); ++j) { in UpdateParameterValueSet()
682 for (int j = 0; j < user->branch_count(); ++j) { in Propagate()
Dlayout_assignment.cc596 for (int j = 1; j < instruction->branch_count(); ++j) { in AddMandatoryConstraints()
607 for (int k = 0; k < instruction->branch_count(); ++k) { in AddMandatoryConstraints()
609 int j = (k + largest_branch) % instruction->branch_count(); in AddMandatoryConstraints()
710 for (int j = 0; j < instruction->branch_count(); ++j) { in CheckConditionalLayout()
Dhlo_module_group_metadata.cc307 for (int b = 0; b < hlo->branch_count(); ++b) { in RecordInstructions()
Dhlo_verifier.cc670 const int num_branches = conditional->branch_count(); in HandleConditional()
1375 for (int b = 0; b < conditional->branch_count(); ++b) { in HandleConditional()
Dhlo_module.cc161 for (int b = 0; b < instruction->branch_count(); ++b) { in ReplaceComputations()
Dhlo_cost_analysis.cc693 for (int j = 1; j < conditional->branch_count(); ++j) { in HandleConditional()
Dbuffer_assignment.cc1632 for (int j = 0; j < conditional->branch_count(); ++j) { in BuildColocatedBufferSets()
1641 for (int j = 0; j < conditional->branch_count(); ++j) { in BuildColocatedBufferSets()
Dhlo_evaluator.cc1269 if (branch_index < 0 || branch_index >= conditional->branch_count()) { in HandleConditional()
1270 branch_index = conditional->branch_count() - 1; in HandleConditional()
Dhlo_instruction.cc1478 CHECK_EQ(new_operands.size(), branch_count() + 1); in CloneWithNewOperands()
1786 for (int j = 0; j < branch_count(); ++j) { in IdenticalSlowPath()
2075 int HloInstruction::branch_count() const { in branch_count() function in xla::HloInstruction
Dhlo_instruction.h1081 int branch_count() const;
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dconditional_thunk.cc84 if (branch_index < 0 || branch_index >= hlo_instruction()->branch_count()) { in ExecuteOnStream()
85 branch_index = hlo_instruction()->branch_count() - 1; in ExecuteOnStream()
Dir_emitter_unnested.cc2096 for (int j = 0; j < conditional->branch_count(); ++j) { in CheckConditionalBuffersShareAllocation()
2160 for (int j = 0; j < hlo->branch_count(); ++j) { in BuildConditionalThunk()
/external/libchrome/third_party/jinja2/
Didtracking.py117 for name, branch_count in iteritems(stores):
118 if branch_count == len(branch_symbols):
/external/vixl/test/aarch32/
Dtest-assembler-aarch32.cc4507 for (int branch_count = 1; branch_count < kMaxBranchCount; branch_count++) { in TEST_T32() local
4508 Label* targets = new Label[branch_count]; in TEST_T32()
4510 for (int i = 0; i < branch_count; i++) { in TEST_T32()
4514 for (int i = 0; i < branch_count; i++) { in TEST_T32()
4515 __ Bind(&targets[branch_count - i - 1]); in TEST_T32()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.cc2533 int num_branches = conditional->branch_count(); in HandleConditional()