Lines Matching defs:ub
27 def simple_loop(lb, ub, step):
28 loop = scf.ForOp(lb, ub, step, [lb, lb])
46 def induction_var(lb, ub, step):
47 loop = scf.ForOp(lb, ub, step, [lb])
73 def range_loop_1(lb, ub, step, memref_v):
74 for i in range(lb, ub, step):
90 def range_loop_2(lb, ub, step, memref_v):
106 def range_loop_3(lb, ub, step, memref_v):
107 for i in range(0, ub, 1):
122 def range_loop_4(lb, ub, step, memref_v):
139 def range_loop_5(lb, ub, step, memref_v):
156 def range_loop_6(lb, ub, step, memref_v):
173 def range_loop_7(lb, ub, step, memref_v):
193 def loop_yield_1(lb, ub, step, memref_v):
217 def loop_yield_2(lb, ub, step, memref_v):
237 ub = arith.ConstantOp.create_index(42)
240 loop = scf.ForOp(lb, ub, step, iter_args)