Jatin Chaudhary
Jatin Chaudhary
Will raise it internally. Open it up to broader discussion since if we add it, it will be supported for a long time.
3.x is now almost 4 year old release. Can you upgrade it to 5.6+ and check. Also can you provide a bit more data here like: your gpu name/architecture, a...
in 3.x `hip_impl::hip_init()` was internal hip init (not to be confused with `hipInit()`). It is required before you query kernel arguments because it initializes visible devices which is required by...
https://rocm.docs.amd.com/projects/HIP/en/latest/user_guide/hip_rtc.html
https://github.com/ROCm-Developer-Tools/HIP-CPU might be worth looking at
HIP does have a cache-line query. Can you please explain what are you trying to do with cache size, maybe we can find a way to work around it.
HIP will not add the query. Although there are ways to get this information from other parts of ROCm stack. For example if you are on linux and HSA you...
We want to fix it but it might require a some work and restructuring of code inorder to preserve API/ABI compatibility. For now can you use something like: ``` #pragma...
Thanks for reporting this. Will look into it.
You are right, the issue is due to __half2 using `unsigned short x,y` , it should be `__half x, y`. At the moment HIP is doing a cast of unsigned...