[Mlir-commits] [mlir] [mlir][sparse] Introduce batch level format. (PR #83082)
Yinying Li
llvmlistbot at llvm.org
Mon Feb 26 16:02:11 PST 2024
================
@@ -154,12 +154,26 @@ enum class Action : uint32_t {
enum class LevelFormat : uint64_t {
Undef = 0x00000000,
Dense = 0x00010000,
- Compressed = 0x00020000,
- Singleton = 0x00040000,
- LooseCompressed = 0x00080000,
- NOutOfM = 0x00100000,
+ Batch = 0x00020000,
+ Compressed = 0x00040000,
+ Singleton = 0x00080000,
+ LooseCompressed = 0x00100000,
----------------
yinying-lisa-li wrote:
since we are changing the bits, do we want Compressed, LooseCompressed, Singleton?
https://github.com/llvm/llvm-project/pull/83082
More information about the Mlir-commits
mailing list