Home
last modified time | relevance | path

Searched refs:while_cond (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CodeGenPrepare/AArch64/
Dlarge-offset-gep.ll9 br label %while_cond
11 while_cond:
25 br label %while_cond
35 br i1 %cmp, label %while_end, label %while_cond
37 while_cond:
51 br label %while_cond
68 br i1 %cmp, label %while_end, label %while_cond
70 while_cond:
84 br label %while_cond
95 %struct = invoke %struct_type* @foo() to label %while_cond unwind label %cleanup
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dwhile_loop_analysis.cc110 auto* while_cond = while_op->while_condition(); in GetLoopInductionVarTupleIdx() local
111 auto* while_cond_root = while_cond->root_instruction(); in GetLoopInductionVarTupleIdx()
112 auto* while_cond_param = while_cond->parameter_instruction(0); in GetLoopInductionVarTupleIdx()
117 << while_cond->root_instruction()->ToString(); in GetLoopInductionVarTupleIdx()
264 auto* while_cond = while_op->while_condition(); in PatternMatchLoopTripCount() local
265 auto* while_cond_root = while_cond->root_instruction(); in PatternMatchLoopTripCount()
369 auto* while_cond = while_op->while_condition(); in ComputeWhileLoopTripCount() local
370 auto* while_cond_root = while_cond->root_instruction(); in ComputeWhileLoopTripCount()
438 auto* while_cond = while_op->while_condition(); in ComputeWhileLoopTripCountUpperBound() local
439 auto* while_cond_param = while_cond->parameter_instruction(0); in ComputeWhileLoopTripCountUpperBound()
[all …]
Dwhile_loop_simplifier.cc57 HloComputation* while_cond = while_op->while_condition(); in TryRemoveDeadWhileParams() local
76 while_cond->parameter_instruction(0)}) { in TryRemoveDeadWhileParams()
97 for (HloComputation* comp : {while_body, while_cond}) { in TryRemoveDeadWhileParams()
232 while_cond->CloneWithReplacements( in TryRemoveDeadWhileParams()
233 make_while_computation_replacements(while_cond)); in TryRemoveDeadWhileParams()
315 auto* while_cond = while_op->while_condition(); in TryRemoveConstantParams() local
322 TF_RET_CHECK(while_cond->num_parameters() == 1); in TryRemoveConstantParams()
411 while_cond->CloneWithReplacementPairs({ in TryRemoveConstantParams()
412 while_cond->parameter_instruction(0), in TryRemoveConstantParams()
415 while_cond->parameter_instruction(0)->name()))), in TryRemoveConstantParams()
[all …]
Dhlo_rematerialization_test.cc103 HloComputation* while_cond, HloComputation* while_body, in MakeRematerializableWhileComputation() argument
117 vec1_shape_, while_cond, while_body, slice_1)); in MakeRematerializableWhileComputation()
235 HloComputation* while_cond = in TEST_F() local
242 while_cond, /*while_body=*/body_computation)); in TEST_F()
271 HloComputation* while_cond = in TEST_F() local
278 while_cond, /*while_body=*/body_computation)); in TEST_F()
303 HloComputation* while_cond = in TEST_F() local
310 while_cond, /*while_body=*/inner_computation, in TEST_F()
314 while_cond, /*while_body=*/middle_computation)); in TEST_F()
Dwhile_loop_constant_sinking.cc51 HloComputation* while_cond = while_instr->while_condition(); in TrySinkingConstantsIntoWhileLoop() local
63 WhileUtil::GetGTEsMapForWhileConditional(*while_cond); in TrySinkingConstantsIntoWhileLoop()
96 HloInstruction* constant_instr = while_cond->AddInstruction( in TrySinkingConstantsIntoWhileLoop()
Dhlo_verifier.cc1354 auto* while_cond = xla_while->while_condition(); in HandleWhile() local
1356 if (while_cond->num_parameters() != 1) { in HandleWhile()
1359 while_cond->num_parameters(), while_cond->ToString()); in HandleWhile()
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow.py108 def while_cond(iterate_index, *state): function
114 while_cond,