@@ -23,12 +23,11 @@ using namespace llvm::cl;
23
23
namespace mlir {
24
24
namespace sparse_tensor {
25
25
26
- // / Options for the "sparse-compiler " pipeline. So far this only contains
26
+ // / Options for the "sparsifier " pipeline. So far this only contains
27
27
// / a subset of the options that can be set for the underlying passes,
28
28
// / because it must be manually kept in sync with the tablegen files
29
29
// / for those passes.
30
- struct SparseCompilerOptions
31
- : public PassPipelineOptions<SparseCompilerOptions> {
30
+ struct SparsifierOptions : public PassPipelineOptions <SparsifierOptions> {
32
31
// These options must be kept in sync with `SparsificationBase`.
33
32
// TODO(57514): These options are duplicated in Passes.td.
34
33
PassOptions::Option<mlir::SparseParallelizationStrategy> parallelization{
@@ -164,15 +163,14 @@ struct SparseCompilerOptions
164
163
// Building and Registering.
165
164
// ===----------------------------------------------------------------------===//
166
165
167
- // / Adds the "sparse-compiler " pipeline to the `OpPassManager`. This
166
+ // / Adds the "sparsifier " pipeline to the `OpPassManager`. This
168
167
// / is the standard pipeline for taking sparsity-agnostic IR using
169
168
// / the sparse-tensor type and lowering it to LLVM IR with concrete
170
169
// / representations and algorithms for sparse tensors.
171
- void buildSparseCompiler (OpPassManager &pm,
172
- const SparseCompilerOptions &options);
170
+ void buildSparsifier (OpPassManager &pm, const SparsifierOptions &options);
173
171
174
172
// / Registers all pipelines for the `sparse_tensor` dialect. At present,
175
- // / this includes only "sparse-compiler ".
173
+ // / this includes only "sparsifier ".
176
174
void registerSparseTensorPipelines ();
177
175
178
176
} // namespace sparse_tensor
0 commit comments