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

As far as I've seen so far, HIP does not support runtime compilation like opencl does or NVRTC allows cuda to do. Will this be added soon? I'm using java...

Hello, the research group I work for is porting their software to HIP, and while we've been porting, we've ran up against an issue with HIP's operator overloading for complex...

See https://github.com/spack/spack/issues/26459 ``` CMake Error in CMakeLists.txt: HIP_ARCHITECTURES is empty for target "directed_tests.kernel.hipLaunchParm". ```

I am unable to compile this code `int main() { return 0; }`: ``` ╰─ hipcc -v test.cpp clang version 13.0.0 (https://aur.archlinux.org/llvm-amdgpu.git 3bd935c95e7353ed2cbb09dbab31e4ed73e8a45a) Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /opt/rocm/llvm/bin...

This is partially related to #2359 and in the same context. In [GPUSPH](/GPUSPH/gpusph) we have several small auxiliary functions that are pure (no side-effects and the return value only depends...

It seems like std::exclusive scan is not supported by hip compiler. I get an error like: ``` error: no member named 'exclusive_scan' in namespace 'std' ``` Reproducer: add following diff...

Hello, I'm in the process of adding HIP support to [GPUSPH](/GPUSPH/gpusph), and one of the obstacles I've encountered so far is the lack of a `operator const T&() const` conversion...

I'm porting my CUDA code to HIP platform. I'm doing device side new/delete in my kernel. It works fine on CUDA platform but an error occurs on HIP platform. Here...

Hi there, I've tried running this: https://www.particleincell.com/wp-content/uploads/2016/02/sheath-gpu.cu reference: https://www.particleincell.com/2016/cuda-pic On AMD Radeon RX Vega 64, and a Nvidia 1080 Max-Q, AMD ``` Found GPU 'Device 687f' with 8176 Gb of...

Under Investigation

Hi, I am writting some GCN assemble files recently. I refered to the GCN assemble guide on Rocm website. However, when I tried to generate 'a.co' file and load it...