-
Notifications
You must be signed in to change notification settings - Fork 55
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
Check that warps are only accessing the subpartition of TMem that it can access #4016
base: tmem-pm
Are you sure you want to change the base?
Conversation
Review updated until commit a31d9c6 Description
Changes walkthrough 📝
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
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 file is updated to handle an edge case where we have transformations like:
split(1, 4) -> (1, 4)
For this case, we still consider it linear because only 1 of the 4 is valid part, and by definition, 1 is always linear w.r.t. anything.
!test |
Warp
i
can only access to subpartitioni % 4
.This PR is stacked on #4015