[Mlir-commits] [mlir] [mlir][python] python binding for the affine.store op (PR #68816)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Wed Oct 11 09:36:05 PDT 2023


================
@@ -0,0 +1,54 @@
+#  Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+#  See https://llvm.org/LICENSE.txt for license information.
+#  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+
+try:
+    from ..ir import *
+    from ._ods_common import get_op_result_or_value as _get_op_result_or_value
+    from ._ods_common import get_op_results_or_values as _get_op_results_or_values
+except ImportError as e:
+    raise RuntimeError("Error loading imports from extension module") from e
+
+from typing import Optional, Sequence, Union
+
+
+class AffineStoreOp:
+    """Specialization for the Affine store operation."""
+
+    def __init__(
+        self,
+        value: Value,
----------------
ftynse wrote:

This should also be a union so we can take an operation and "unpack" it to get the result (if single). Similarly to the other argument. Note that the implementation handles this correctly.

https://github.com/llvm/llvm-project/pull/68816


More information about the Mlir-commits mailing list