Skip to content

Commit 9552f4e

Browse files
committed
linting
1 parent bd4ade5 commit 9552f4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mlir/lib/Dialect/AMDGPU/Transforms/FoldSubviewOps.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ struct FoldSubviewIntoGatherToLDSOp : public OpRewritePattern<GatherToLDSOp> {
4343
auto subviewOp = dyn_cast<memref::SubViewOp>(op.getSrc().getDefiningOp());
4444
if (!subviewOp)
4545
return rewriter.notifyMatchFailure(
46-
loc, "GatherToLDSOp folding is currently supported only when the source is a SubviewOp. This is one specific pattern, and other scenarios may be added in the future.");
46+
loc, "GatherToLDSOp folding is currently supported only when the "
47+
"source is a SubviewOp. This is one specific pattern, and other "
48+
"scenarios may be added in the future.");
4749

4850
SmallVector<Value> sourceIndices;
4951
mlir::affine::resolveIndicesIntoOpWithOffsetsAndStrides(

0 commit comments

Comments
 (0)