Jatin Chaudhary

Results 38 comments of Jatin Chaudhary

Can you share the ROCm version you were using on 6800. Also a sample code of how you are using it.

I have modified the sample https://gist.github.com/cjatin/6420cd9cda4437ea3957fba792cc3c3e can you try running this. Regarding what's happening, `hipLaunchCooperativeKernel` allocates a cooperative queue which relies on Global Wave Sync(GWS). Navi4 does not have GWS....

I think this should be sorted in rocm 7.0 release, driver was reporting coop queues as 0.

Threadpool on GPU might not be the best fit (design wise). I recommend you to launch work when needed, preferably on a stream. You can also create a graph and...

Regarding doc, will try to come up with something better, that explains it better. Short version of what happens is, hip functions are mapped to cuda functions, so something like...

Can you add these line to your cmake (right after the project declaration) and try again. `set(CMAKE_C_COMPILER hipcc)` `set(CMAKE_CXX_COMPILER hipcc)`

I had a chat with the compiler folks, turns out -fgpu-rdc option is supported only with static libs and not dynamic lib. so it needs to be: `add_library(libb STATIC ${libb_srcs})`

Can you share some more information, where are you seeing this error.