Lines Matching defs:sourceOp
539 auto sourceOp = dyn_cast<scf::ForallOp>(source);
540 if (!targetOp || !sourceOp)
543 return targetOp.getMixedLowerBound() == sourceOp.getMixedLowerBound() &&
544 targetOp.getMixedUpperBound() == sourceOp.getMixedUpperBound() &&
545 targetOp.getMixedStep() == sourceOp.getMixedStep() &&
546 targetOp.getMapping() == sourceOp.getMapping();
557 auto sourceOp = dyn_cast<scf::ForOp>(source);
558 if (!targetOp || !sourceOp)
561 return targetOp.getLowerBound() == sourceOp.getLowerBound() &&
562 targetOp.getUpperBound() == sourceOp.getUpperBound() &&
563 targetOp.getStep() == sourceOp.getStep();