-
Notifications
You must be signed in to change notification settings - Fork 68
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
Update reqd_sub_group_size argument name. #506
Conversation
`dim` name is tipically used to denote the dimension (see reqd_work_group_size attribute description). In this case we set the size characterisitic, rather than the dimension.
I think it was originally written as "dim" to match Should we change to |
According to my understanding, the I don't have a strong opinion about |
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.
I agree that it makes sense to change reqd_sub_group_size
because the parameter is not related to the dimensions of the invocation range.
I could go either way with the naming of reqd_work_group_size
. The parameters here describe the size of the work-group in each dimension, so the words "size" and "dim" both make sense.
This needs one more reviewer. Can someone volunteer? |
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.
Yes, that looks more uniform. Thanks.
Update reqd_sub_group_size argument name.
Update reqd_sub_group_size argument name. (cherry picked from commit 299ac1c)
Update reqd_sub_group_size argument name. (cherry picked from commit 299ac1c)
dim
name is tipically used to denote the dimension (see reqd_work_group_size attribute description). In this case we set the size characterisitic, rather than the dimension.