Skip to content

Commit 319bcae

Browse files
committed
nit
1 parent 9d8b682 commit 319bcae

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

mlir/include/mlir/Conversion/Passes.td

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -947,10 +947,12 @@ def ConvertShardToMPIPass : Pass<"convert-shard-to-mpi"> {
947947
// Normalize
948948
//===----------------------------------------------------------------------===//
949949
def Normalize : Pass<"normalize", "ModuleOp"> {
950-
let summary = "convert MLIR input to its normalized form";
950+
let summary = "Convert MLIR input to its normalized form";
951951
let description = [{
952-
This pass produces reordered MLIR input with determinstic variable
953-
names to reduce the diff between two semantically similar programs
952+
This pass aims to transform MLIR inputs into a normal form by reordering
953+
and renaming instructions while preserving the same semantics. The pass
954+
makes it easier to spot semantic differences while diffing two modules
955+
which have undergone different passes.
954956
}];
955957
}
956958

0 commit comments

Comments
 (0)