diff --git a/mlir/include/mlir/Dialect/SparseTensor/Pipelines/Passes.h b/mlir/include/mlir/Dialect/SparseTensor/Pipelines/Passes.h --- a/mlir/include/mlir/Dialect/SparseTensor/Pipelines/Passes.h +++ b/mlir/include/mlir/Dialect/SparseTensor/Pipelines/Passes.h @@ -75,12 +75,13 @@ PassOptions::Option createSparseDeallocs{ *this, "create-sparse-deallocs", - desc("Specify if the temporary sparse buffer created by the sparse " - "compiler should be deallocated. For compatibility with core " - "bufferization passes. " - "It only takes effect when enable-runtime-library=false, otherwise " - "the memory storage for sparse tensors are managed by the runtime " - "library. See also create-deallocs for BufferizationOption."), + desc( + "Specify if the temporary sparse buffer created by the sparse " + "compiler should be deallocated. For compatibility with core " + "bufferization passes. " + "This option is only used when enable-runtime-library=false, " + "otherwise the memory storage for sparse tensors are managed by the " + "runtime library. See also create-deallocs for BufferizationOption."), init(true)}; PassOptions::Option vectorLength{ diff --git a/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td b/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td --- a/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td +++ b/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td @@ -224,9 +224,9 @@ "true", "Specify if the temporary sparse buffer created by the sparse " "compiler should be deallocated. For compatibility with core " "bufferization passes. " - "It only takes effect when enable-runtime-library=false, otherwise " - "the memory storage for sparse tensors are managed by the runtime " - "library. See also create-deallocs for BufferizationOption.">, + "This option is only used when enable-runtime-library=false, " + "otherwise the memory storage for sparse tensors are managed by the " + "runtime library. See also create-deallocs for BufferizationOption.">, ]; }