[Mlir-commits] [mlir] [mlir][pybind] Support loading DenseElementsAttr of bools (PR #82868)
Rob Suderman
llvmlistbot at llvm.org
Mon Feb 26 11:11:01 PST 2024
https://github.com/rsuderman updated https://github.com/llvm/llvm-project/pull/82868
>From dba584884881de2ab88af479621367a9d7ef4a8a Mon Sep 17 00:00:00 2001
From: Rob Suderman <rob.suderman at gmail.com>
Date: Fri, 23 Feb 2024 23:01:53 -0800
Subject: [PATCH 1/3] [mlir][pybind] Support loading DenseElementsAttr of bools
We were missing the python binding support for loading tensors of
booleans from numpy arrays.
---
mlir/lib/Bindings/Python/IRAttributes.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mlir/lib/Bindings/Python/IRAttributes.cpp b/mlir/lib/Bindings/Python/IRAttributes.cpp
index dda2003ba0375a..3bf305c1bbb3e9 100644
--- a/mlir/lib/Bindings/Python/IRAttributes.cpp
+++ b/mlir/lib/Bindings/Python/IRAttributes.cpp
@@ -694,6 +694,8 @@ class PyDenseElementsAttribute
// f16
assert(view.itemsize == 2 && "mismatched array itemsize");
bulkLoadElementType = mlirF16TypeGet(context);
+ // } else if (format == "?") {
+ // bulkLoadElementType = mlirIntegerTypeGet(context, 1);
} else if (isSignedIntegerFormat(format)) {
if (view.itemsize == 4) {
// i32
>From c4d730653f7343a6971a75b524bf1b5c6ea87f4c Mon Sep 17 00:00:00 2001
From: Rob Suderman <rob.suderman at gmail.com>
Date: Mon, 26 Feb 2024 10:27:40 -0800
Subject: [PATCH 2/3] add i1 test
---
mlir/lib/Bindings/Python/IRAttributes.cpp | 4 ++--
mlir/test/python/ir/array_attributes.py | 8 ++++++++
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/mlir/lib/Bindings/Python/IRAttributes.cpp b/mlir/lib/Bindings/Python/IRAttributes.cpp
index 3bf305c1bbb3e9..1cc7f8b63bd356 100644
--- a/mlir/lib/Bindings/Python/IRAttributes.cpp
+++ b/mlir/lib/Bindings/Python/IRAttributes.cpp
@@ -694,8 +694,8 @@ class PyDenseElementsAttribute
// f16
assert(view.itemsize == 2 && "mismatched array itemsize");
bulkLoadElementType = mlirF16TypeGet(context);
- // } else if (format == "?") {
- // bulkLoadElementType = mlirIntegerTypeGet(context, 1);
+ } else if (format == "?") {
+ bulkLoadElementType = mlirIntegerTypeGet(context, 1);
} else if (isSignedIntegerFormat(format)) {
if (view.itemsize == 4) {
// i32
diff --git a/mlir/test/python/ir/array_attributes.py b/mlir/test/python/ir/array_attributes.py
index 9251588a4c48a6..d47c26ba8132ca 100644
--- a/mlir/test/python/ir/array_attributes.py
+++ b/mlir/test/python/ir/array_attributes.py
@@ -148,6 +148,14 @@ def testNonSplat():
### explicitly provided types
+ at run
+def testGetDenseElementsI1():
+ with Context():
+ array = np.array([[True, False, True], [False, False, True]], dtype=np._bool)
+ attr = DenseElementsAttr.get(array, type=IntegerType.get_signless(1))
+ # CHECK: dense<{{\[}}[true, false, true], [false, false, true]]> : tensor<2x3xi1>
+ print(attr)
+
@run
def testGetDenseElementsBF16():
>From 6a5a923ec1a046d3002ada500299f800758016c4 Mon Sep 17 00:00:00 2001
From: Rob Suderman <rob.suderman at gmail.com>
Date: Mon, 26 Feb 2024 11:09:29 -0800
Subject: [PATCH 3/3] git-clang-format
---
mlir/lib/Bindings/Python/IRAttributes.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/lib/Bindings/Python/IRAttributes.cpp b/mlir/lib/Bindings/Python/IRAttributes.cpp
index 1cc7f8b63bd356..0f843b78bfb71d 100644
--- a/mlir/lib/Bindings/Python/IRAttributes.cpp
+++ b/mlir/lib/Bindings/Python/IRAttributes.cpp
@@ -695,7 +695,7 @@ class PyDenseElementsAttribute
assert(view.itemsize == 2 && "mismatched array itemsize");
bulkLoadElementType = mlirF16TypeGet(context);
} else if (format == "?") {
- bulkLoadElementType = mlirIntegerTypeGet(context, 1);
+ bulkLoadElementType = mlirIntegerTypeGet(context, 1);
} else if (isSignedIntegerFormat(format)) {
if (view.itemsize == 4) {
// i32
More information about the Mlir-commits
mailing list