-
Notifications
You must be signed in to change notification settings - Fork 140
[CIR][ThroughMLIR] remove nested memref wrapper for array types #1412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
for example, `cir.alloca !cir.array<!s32i x N>, !cir.ptr<!cir.array<!s32i x N>>` to `memref.alloca() : memref<Nxi32>` see llvm#1405
Not quite related to this PR, but it seems that currently we lower |
@keryell what's your take here? |
I fixed this issue already in #1334, more precisely with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an improvement to the current situation.
Thanks!
hi @Lancern, I apologize for overlooking this comment. Since the PR has already been merged, let's discuss this further in the issue thread. #1405 |
for example, lower `cir.alloca !cir.array<!s32i x N>, !cir.ptr<!cir.array<!s32i x N>>` to `memref.alloca() : memref<Nxi32>` see #1405
for example, lower
cir.alloca !cir.array<!s32i x N>, !cir.ptr<!cir.array<!s32i x N>>
to
memref.alloca() : memref<Nxi32>
see #1405