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

[Reason] All `Mipmapped` HIP and CUDA functions have the second `m` letter lowercase.

difficulty:A_Easy
hip
typo

Hello, I'd like to use HIP to drive an AMD GPU, while using CUDA to drive a CUDA GPU. But the headers conflict Samuel ``` $ cat test.c #include #include...

The size of an installation for compiling hip applications on a rocm platform is quite large. ```sh sudo apt install rocm-hip-runtime-dev du -sh /opt/rocm-5.0.0/ ``` Result: ``` 3.6G /opt/rocm-5.0.0/ ```...

priority: P3 (normal)
clang
packaging
Under Investigation

`enable_language(HIP)` in CMake 3.22.3 and 3.23.0-rc3 fails when linking the test program using ROCm 5.0.2 on Ubuntu 20.04: ``` -- The HIP compiler identification is Clang 14.0.0 -- Detecting HIP...

hip
priority: P2 (important)

Hi everybody, I’m trying some fancy things with HIP graphs and I just ran into a bug which seems to be coming from the HIP graph API. Using multiple graphs...

type:bug
hip
priority: P2 (important)

/opt/rocm/include/hip/amd_detail/amd_device_functions.h:995 declares`clock()` to have return type `long long`. ctime.h declares it to have return type `clock_t`, which is `long`. Please fix.

type:bug
hip
priority: P4 (low)

Hello *, hipcc compiler seems to be messing up the execution results of a specific add kernel on MI100, gfx908 card. The results are the same on my RX Vega...

pr:work_in_progress
clang

Hello, Just compiling this: ``` #include #include int main(void) { return 0; } ``` with ``` gcc test.c -o test -Wall -Wextra $(hipconfig -C) ``` generates a lot of warnings:...

type:bug
difficulty:A_Easy
hip
priority: P3 (normal)

Hello,everyone. I have some questions about atomic while using HIP.When I want to use atomic.load() in a __device__ function based on the **hip:rocm-4.0.0 version,** error like : ../bucket.cuh:48:44: error: no...

``` #include #define len 256 int main() { int numDevices = 0; char name[len]; hipDevice_t device; hipGetDeviceCount(&numDevices); printf("#devices %d\n", numDevices); for (int i = 0; i < numDevices; i++) {...