-
Notifications
You must be signed in to change notification settings - Fork 56
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
[Issue]: Discrepancy between hipGetDeviceProperties and rocminfo #140
Comments
From what I can tell the change was made to accommodate |
I just realized that the values actually never matched. The documentation says that the maximum number is 2^{32}-1 but |
Hi @Rombur, I had a chat with the internal team and the recommendation is to use the values from hipGetDeviceProperties, namely: 2^{31} - 1, 2^{16} - 1, and 2^{16} - 1 for the x, y, and z dimensions. This is in line with CUDA: Technical Specifications per Compute Capability. I am working on getting the documentation updated to reflect this change. Thanks! |
@darren-amd Thanks for the update. Will |
Hi @Rombur, Yes, I have an internal PR to get |
Great. Thank you @darren-amd |
Problem Description
In AMD's documentation, it says that
Maximum x-, y- or z-dimension of a grid is 2^{32}-1
. These are also the values you get when usingrocminfo
.hipGetDeviceProperties
used to return the same values but it was changed in 31b362b. Which values should I use?Operating System
NA
CPU
NA
GPU
MI 250
ROCm Version
ROCm 6.3
ROCm Component
No response
Steps to Reproduce
No response
(Optional for Linux users) Output of /opt/rocm/bin/rocminfo --support
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: