Lines Matching defs:lb
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):
91 for i in range(lb, 10, 1):
106 def range_loop_3(lb, ub, step, memref_v):
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):
236 lb = arith.ConstantOp.create_index(0)
240 loop = scf.ForOp(lb, ub, step, iter_args)