[Mlir-commits] [mlir] Changed all code and comments that used the phrase "sparse compiler" to instead use "sparsifier" (PR #71875)
Aart Bik
llvmlistbot at llvm.org
Wed Nov 15 12:09:43 PST 2023
================
@@ -2,19 +2,19 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-# This file contains the SparseCompiler class.
+# This file contains the Sparsifier class.
from mlir import execution_engine
from mlir import ir
from mlir import passmanager
from typing import Sequence
-class SparseCompiler:
- """Sparse compiler class for compiling and building MLIR modules."""
+class Sparsifier:
+ """sparsifier class for compiling and building MLIR modules."""
----------------
aartbik wrote:
I would make this a capital S, as in "Sparsifier class for ..." to be consistent with the original
https://github.com/llvm/llvm-project/pull/71875
More information about the Mlir-commits
mailing list