Lines Matching defs:isInt
135 bool isInt, Value mask = Value()) {
139 if (isInt) {
193 /// Creates an AddIOp if `isInt` is true otherwise create an arith::AddFOp using
195 static Value createAdd(Location loc, Value x, Value y, bool isInt,
197 if (isInt)
202 /// Creates a MulIOp if `isInt` is true otherwise create an MulFOp using
204 static Value createMul(Location loc, Value x, Value y, bool isInt,
206 if (isInt)
760 bool isInt = isa<IntegerType>(dstType.getElementType());
767 Value m = createMul(op.getLoc(), a, b, isInt, rewriter);
777 res = createAdd(op.getLoc(), res, acc, isInt, rewriter);
883 bool isInt = contractOp.getLhsType().getElementType().isIntOrIndex();
892 contractOp.getKind(), rewriter, isInt);
1125 bool isInt = isa<IntegerType>(resType);
1152 Value m = createMul(loc, op.getLhs(), op.getRhs(), isInt, rewriter);
1217 bool isInt = isa<IntegerType, IndexType>(eltType);
1238 loc, op.getLhs(), b, acc, kind, rewriter, isInt, mask);
1258 loc, a, op.getRhs(), r, kind, rewriter, isInt, extrMask);