Maneesh Gupta
Maneesh Gupta
@nives-vukovic : I see some merge conflicts. Could you rebase your changes on top of current develop branch.
@mirza-halilcevic : Some tests fail CI. Details shared separately.
@music-dino / @mirza-halilcevic : Some tests failed on CI. Details shared separately.
@mirza-halilcevic : Some tests currently failing. Shared details separately.
hipcc defaults to passing -std=c++11 to clang. And the Makefile for the vectorAdd sample does not pass any extra flags to hipcc. You would need to modify the Makefile to...
#2364 should resolve this.
@zjin-lcf : The HIP reproducer mentioned in your initial post is no longer available. Can you please link to a simple HIP reproducer so that we can understand the issue.
@zjin-lcf : Thanks for the updated link. I see that you are using hipMallocManaged without using any prefetch hints in your example. Can you share the output of ```rocminfo |...
@zjin-lcf : "amdgcn-amd-amdhsa--gfx908:sramecc+:xnack-" does not support managed memory. HIP runtime will fallback to allocating system memory that is made visible to all devices instead to keep the code functional. That...
system memory = host memory. It is the same as memory allocated using hipHostMalloc.