/external/llvm-project/llvm/test/Transforms/LoopRotate/ |
D | vect.omp.persistence.ll | 12 ; CHECK: loop_cond: 14 ; CHECK: br i1 %cmp, label %return, label %loop_cond, !llvm.loop !0 19 br label %loop_cond 21 loop_cond: 28 br label %loop_cond, !llvm.loop !0
|
/external/llvm-project/llvm/test/Transforms/IRCE/ |
D | range_intersect_miscompile.ll | 26 ; CHECK-NEXT: %loop_cond = icmp ult i32 %iv_next, 400 36 ; CHECK-NEXT: %loop_cond.postloop = icmp ult i32 %iv_next.postloop, 400 37 ; CHECK-NEXT: br i1 %loop_cond.postloop, label %loop_header.postloop, label %exit.loopexit 66 %loop_cond = icmp ult i32 %iv_next, 400 67 br i1 %loop_cond, label %loop_header, label %exit 86 ; CHECK-NEXT: %loop_cond = icmp ult i32 %iv_next, 400 87 ; CHECK-NEXT: br i1 %loop_cond, label %loop_header, label %exit 116 %loop_cond = icmp ult i32 %iv_next, 400 117 br i1 %loop_cond, label %loop_header, label %exit 164 %loop_cond = icmp ult i32 %iv_next, 400 [all …]
|
/external/tensorflow/tensorflow/core/graph/ |
D | control_flow.cc | 37 const Node* loop_cond = nullptr; member 69 if (frame.loop_cond && in ValidateControlFlowInfo() 70 !absl::StrContains(frame.loop_cond->name(), "LoopCounter") && in ValidateControlFlowInfo() 75 " and ", FormatNodeForError(*frame.loop_cond), in ValidateControlFlowInfo() 79 frame.loop_cond = node; in ValidateControlFlowInfo()
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | while_test.py | 50 def loop_cond(step): function 56 loop_outputs = xla.while_loop([init_index], loop_cond, loop_body) 71 def loop_cond(step, rsum): function 79 loop_outputs = xla.while_loop([init_index, init_sum], loop_cond, 97 def loop_cond(step, rsum): function 105 loop_outputs = xla.while_loop([init_index, init_sum], loop_cond, 123 def loop_cond(step, x): function 130 loop_outputs = xla.while_loop([init_index, 42], loop_cond, loop_body)
|
/external/llvm-project/llvm/test/Transforms/LoopVectorize/ |
D | vect.omp.persistence.ll | 20 br label %loop_cond 22 loop_cond: 29 br label %loop_cond, !llvm.loop !0
|
/external/llvm-project/llvm/test/Transforms/LICM/ |
D | explicit_guards.ll | 36 %loop_cond = icmp slt i32 %iv, %M 38 br i1 %loop_cond, label %loop, label %exit 73 %loop_cond = icmp slt i32 %iv, %M 75 br i1 %loop_cond, label %loop, label %exit 111 %loop_cond = icmp slt i32 %iv, %M 113 br i1 %loop_cond, label %loop, label %exit
|
D | guards.ll | 180 %loop_cond = icmp slt i32 %iv.next, 1000 181 br i1 %loop_cond, label %loop, label %exit 230 %loop_cond = icmp slt i32 %iv.next, 1000 231 br i1 %loop_cond, label %loop, label %exit 278 %loop_cond = icmp slt i32 %iv.next, 1000 279 br i1 %loop_cond, label %loop, label %exit 328 %loop_cond = icmp slt i32 %iv.next, 1000 329 br i1 %loop_cond, label %loop, label %exit 378 %loop_cond = icmp slt i32 %iv.next, 1000 379 br i1 %loop_cond, label %loop, label %exit [all …]
|
/external/llvm-project/polly/test/Isl/CodeGen/LoopParallelMD/ |
D | loop_nest_param_parallel.ll | 5 ; CHECK-DAG: %polly.loop_cond[[COuter:[0-9]*]] = icmp sle i64 %polly.indvar_next{{[0-9]*}}, 1023 6 ; CHECK-DAG: br i1 %polly.loop_cond[[COuter]], label %polly.loop_header{{[0-9]*}}, label %polly.lo… 8 ; CHECK-DAG: %polly.loop_cond[[CInner:[0-9]*]] = icmp sle i64 %polly.indvar_next{{[0-9]*}}, 511 9 ; CHECK-DAG: br i1 %polly.loop_cond[[CInner]], label %polly.loop_header{{[0-9]*}}, label %polly.lo…
|
/external/llvm-project/polly/test/Isl/CodeGen/MemAccess/ |
D | generate-all.ll | 19 ; SCEV-NEXT: %polly.loop_cond = icmp sle i64 %polly.indvar_next, 99 20 ; SCEV-NEXT: br i1 %polly.loop_cond, label %polly.loop_header, label %polly.loop_exit 31 ; ASTEXPR-NEXT: %polly.loop_cond = icmp sle i64 %polly.indvar_next, 99 32 ; ASTEXPR-NEXT: br i1 %polly.loop_cond, label %polly.loop_header, label %polly.loop_exit
|
/external/llvm-project/llvm/test/Transforms/SimpleLoopUnswitch/ |
D | implicit-null-checks.ll | 69 %loop_cond = icmp slt i32 %iv.next, 10000 70 br i1 %loop_cond, label %loop, label %exit 126 %loop_cond = icmp slt i32 %iv.next, 10000 127 br i1 %loop_cond, label %loop, label %exit 197 %loop_cond = icmp slt i32 %iv.next, 10000 198 br i1 %loop_cond, label %loop, label %exit 256 %loop_cond = icmp slt i32 %iv.next, 10000 257 br i1 %loop_cond, label %loop, label %exit 303 %loop_cond = icmp slt i32 %iv.next, 10000 305 br i1 %loop_cond, label %loop, label %exit
|
/external/llvm-project/llvm/test/Transforms/LoopSimplify/ |
D | convergent.ll | 8 define i32 @test(i1 %loop_cond, i1 %exit_cond, i32 %init) { 15 br i1 %loop_cond, label %BB1, label %BB2
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | shape_inference_test.cc | 88 auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less); in TEST() local 90 ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond); in TEST() 141 auto loop_cond = in TEST() local 144 ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond); in TEST()
|
D | deadness_analysis_test.cc | 87 Output loop_cond; member 204 const Output& loop_cond, const Output& value) { in CreateDependentLoopInvariantValue() argument 208 ops::Switch latch(root.WithOpName(prefix + "/latch"), iv.output, loop_cond); in CreateDependentLoopInvariantValue() 221 const Output& loop_cond, int32 value) { in CreateDependentLoopInvariantValue() argument 223 root, prefix, frame_name, loop_cond, in CreateDependentLoopInvariantValue() 620 CreateDependentLoopInvariantValue(root, "div0", "loop", iv.loop_cond, 0) in TEST() 623 CreateDependentLoopInvariantValue(root, "div1", "loop", iv.loop_cond, 0) in TEST() 674 CreateDependentLoopInvariantValue(root, "div0", "frame", iv.loop_cond, 0); in TEST() 709 enter_constant_outer_loop, iv_outer.loop_cond); in TEST() 715 "outer_loop", iv_outer.loop_cond, 0) in TEST() [all …]
|
/external/llvm-project/llvm/test/CodeGen/Hexagon/ |
D | rdf-dead-loop.ll | 17 %polly.loop_cond = icmp slt i32 %polly.indvar, 4 19 br i1 %polly.loop_cond, label %body, label %exit
|
/external/llvm/test/CodeGen/Hexagon/ |
D | rdf-dead-loop.ll | 17 %polly.loop_cond = icmp slt i32 %polly.indvar, 4 19 br i1 %polly.loop_cond, label %body, label %exit
|
D | postinc-offset.ll | 32 %polly.loop_cond = icmp slt i32 %polly.indvar, 4 34 br i1 %polly.loop_cond, label %polly.stmt.for.body.i, label %polly.stmt.for.body.i24
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | vect.omp.persistence.ll | 75 br label %loop_cond 76 loop_cond: 82 br label %loop_cond, !llvm.loop !3
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | functionalize_while.cc | 147 TF_ASSIGN_OR_RETURN(node_map[frame->loop_cond->id()], in BuildLoopCondition() 153 return CopySubgraph(graph, frame, {frame->loop_cond}, squash_src_outputs, in BuildLoopCondition() 270 if (frame->loop_cond == nullptr) { in FunctionalizeLoop() 277 for (const Edge* edge : frame->loop_cond->out_edges()) { in FunctionalizeLoop() 435 NodeDefBuilder builder(frame->loop_cond->name(), "While", library); in FunctionalizeLoop() 445 if (GetNodeAttr(frame->loop_cond->def(), attr_name, &attr_val).ok()) { in FunctionalizeLoop()
|
D | functionalize_control_flow_test.cc | 329 auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less); in TEST() local 331 ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond); in TEST() 479 auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less); in TEST() local 481 ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond); in TEST() 609 auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less); in TEST() local 611 ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond); in TEST() 731 auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less); in TEST() local 734 merge_x.output, loop_cond); in TEST() 736 merge_y.output, loop_cond); in TEST() 1006 auto loop_cond = in RunTest() local [all …]
|
/external/tensorflow/tensorflow/python/grappler/ |
D | constant_folding_test.py | 42 def loop_cond(idx_step, *unused_args): function 62 loop_cond,
|
/external/llvm-project/polly/test/Isl/ |
D | single_loop_param_less_than.ll | 52 ; CODEGEN: %polly.loop_cond = icmp slt i64 %polly.indvar_next, %n 53 ; CODEGEN: br i1 %polly.loop_cond, label %polly.loop_header, label %polly.loop_exit
|
D | single_loop_param_less_equal.ll | 54 ; CODEGEN: %polly.loop_cond = icmp sle i64 %polly.indvar_next, %n 55 ; CODEGEN: br i1 %polly.loop_cond, label %polly.loop_header, label %polly.loop_exit
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | outfeed_in_nested_computation_test.cc | 41 TF_ASSERT_OK_AND_ASSIGN(XlaComputation loop_cond, [&] { in XLA_TEST_F() 69 XlaOp result_tuple = While(loop_cond, loop_body, init_tuple); in XLA_TEST_F()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_executor.cc | 878 void Print(LoopCondOp loop_cond, OpAsmPrinter &p) { in Print() argument 879 p << loop_cond.getOperationName() << ' '; in Print() 880 p.printOperands(loop_cond.getOperands()); in Print() 883 if (loop_cond.input().getType() != loop_cond.output().getType()) { in Print() 885 p.printFunctionalType(loop_cond.getOperation()); in Print() 887 p << " : " << loop_cond.input().getType(); in Print() 890 p.printOptionalAttrDict(loop_cond.getAttrs()); in Print()
|
/external/llvm-project/polly/test/ScopInfo/ |
D | int2ptr_ptr2int_2.ll | 28 ; IR-NEXT: %polly.loop_cond = icmp sle i64 %polly.indvar_next, 99 29 ; IR-NEXT: br i1 %polly.loop_cond, label %polly.loop_header, label %polly.loop_exit
|