HIP icon indicating copy to clipboard operation
HIP copied to clipboard

HIP: C++ Heterogeneous-Compute Interface for Portability

Results 379 HIP issues
Sort by recently updated
recently updated
newest added

When I running a ported program from cuda. I meet the problem. ``` Memory access fault by GPU node-4 (Agent handle: 0x14193b0) on address 0x2b43aa1be000. Reason: Page not present or...

For AMD ROCm, is there bank conflicts problem? Specifically, 1) Is there shared memory bank conflicts? What about the data stride between banks? 2) Is there local memory bank conflicts?...

When I port a program from cuda to hip, the raw program use cudaStreamPerThread and I change it to hipStreamPerThread directly and the compile process is successful. But when I...

I am trying to debug a failure in a TF XLA unit test, that fails because a call to the `hipModuleGetFunction` API returns error. I can replicate the error using...

Hello, I am getting an error when I try to convert gemm.c from YOLO (https://github.com/pjreddie/darknet/blob/master/src/gemm.c) Below is the command I used. $ ./hipify-clang ../../../darknet_hipify/src/gemm.c --cuda-path=/p/hal/private/libs/cuda-8.0/ -I../../../darknet_hipify/include/ -I../../../darknet_hipify/src/ -print-stats -DCUDA_VERSION=8000 -DGPU...

Hi, guys... I am trying to add HIP support to our existing Cmake project. We have to strip the symbols in the generated .so/executable. But after stripping the symbols, the...

Hello guys.. How do I add HIP support to an existing cmake project. I followed this issue [#231](https://github.com/ROCm-Developer-Tools/HIP/issues/231) and had tried 4 approaches, but only one approach work correctly. So...

Before I want to use hipcc to link object together but I meet the LLVM problem #979 . So I change the ld to mpic++ and including the hip library...

Here is a test case: https://gist.github.com/ex-rzr/d433b3c24db28761d11bc5c3ab09d247 ```sh hipcc -o no_device_code no_device_code.cpp && ./no_device_code ``` There are universal functions that must work on host an device. On device they write to...