-
Notifications
You must be signed in to change notification settings - Fork 57
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
[flang][OpenMP][DoConcurrent] Support fir.shape_shift
values
#211
Conversation
This is the last change I had to make in order to compile LBL's inference engine to device (not able to successfully run on the device yet becuase we still miss some stuff related to mapping). Therefore, I think with this change, the |
Ping 🔔! Please take a look when you have a chance. |
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.
LGTM, albeit me no being the expert in this area.
One more ping 🔔! Let me know if there are any objections to merging this PR. |
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.
Thank you Kareem, I have some small comments.
Extends support for shaped values by adding support for values whose shaped are defined by `fir.shapeshift` types. To that end, we add maps to store all the info from which we can recreate the shape of the mapped object.
658c99e
to
7969a20
Compare
Extends support for shaped values by adding support for values whose shaped are defined by
fir.shapeshift
types. To that end, we add maps to store all the info from which we can recreate the shape of the mapped object.