[Mlir-commits] [mlir] [mlir][python] enable memref.subview (PR #79393)
Oleksandr Alex Zinenko
llvmlistbot at llvm.org
Mon Jan 29 06:03:10 PST 2024
================
@@ -1,5 +1,126 @@
# 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
+import operator
+from itertools import accumulate
+from typing import Optional
from ._memref_ops_gen import *
+from .arith import ConstantOp
+from .transform.structured import _dispatch_mixed_values, MixedValues
----------------
ftynse wrote:
I'm not convinced memref dialect should depend on structured transform ops. How about factoring these out into some utils package?
https://github.com/llvm/llvm-project/pull/79393
More information about the Mlir-commits
mailing list