File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
mlir/include/mlir/Dialect/SparseTensor Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -75,12 +75,11 @@ struct SparseCompilerOptions
75
75
76
76
PassOptions::Option<bool > createSparseDeallocs{
77
77
*this , " create-sparse-deallocs" ,
78
- desc (" Specify if the temporary sparse buffer created by the sparse "
78
+ desc (" Specify if the temporary buffers created by the sparse "
79
79
" compiler should be deallocated. For compatibility with core "
80
80
" bufferization passes. "
81
- " It only takes effect when enable-runtime-library=false, otherwise "
82
- " the memory storage for sparse tensors are managed by the runtime "
83
- " library. See also create-deallocs for BufferizationOption." ),
81
+ " This option is only used when enable-runtime-library=false. "
82
+ " See also create-deallocs for BufferizationOption." ),
84
83
init (true )};
85
84
86
85
PassOptions::Option<int32_t > vectorLength{
Original file line number Diff line number Diff line change @@ -221,12 +221,11 @@ def SparseTensorCodegen : Pass<"sparse-tensor-codegen", "ModuleOp"> {
221
221
Option<"enableBufferInitialization", "enable-buffer-initialization", "bool",
222
222
"false", "Enable zero-initialization of the memory buffers">,
223
223
Option<"createSparseDeallocs", "create-sparse-deallocs", "bool",
224
- "true", "Specify if the temporary sparse buffer created by the sparse "
224
+ "true", "Specify if the temporary buffers created by the sparse "
225
225
"compiler should be deallocated. For compatibility with core "
226
226
"bufferization passes. "
227
- "It only takes effect when enable-runtime-library=false, otherwise "
228
- "the memory storage for sparse tensors are managed by the runtime "
229
- "library. See also create-deallocs for BufferizationOption.">,
227
+ "This option is only used when enable-runtime-library=false. "
228
+ "See also create-deallocs for BufferizationOption.">,
230
229
];
231
230
}
232
231
You can’t perform that action at this time.
0 commit comments