Lines Matching defs:constant
41 /// Rewrite a parallel loop with bounds defined by an affine.min with a constant
42 /// into 2 loops after checking if the bounds are equal to that constant. This
43 /// is beneficial if the loop will almost always have the constant bound and
66 Value constant =
69 std::get<0>(bound), constant);
71 map.map(std::get<0>(bound), constant);
79 /// Rewrite a for loop with bounds defined by an affine.min with a constant into
80 /// 2 loops after checking if the bounds are equal to that constant. This is
81 /// beneficial if the loop will almost always have the constant bound and that
98 Value constant = b.create<arith::ConstantIndexOp>(op.getLoc(), minConstant);
100 bound, constant);
101 map.map(bound, constant);