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

In some cases, HIP appears to be incapable of unrolling a loop, where `nvcc` does so without a problem, as is the case in the following example: ```c++ #include template...

hcc

[CUDA has `nvstd::function` support](https://devblogs.nvidia.com/new-compiler-features-cuda-8/) that mimics `std::function`, but it seems that HIP does not have it yet.

hip
type:feature

Source code: ```sh #include __global__ void ConcatV22concatenate_kernel0( float* __restrict__ A75, float* __restrict__ A74, float* __restrict__ A73, float* __restrict__ A72, float* __restrict__ A71, float* __restrict__ A70, float* __restrict__ A69, float* __restrict__...

HIP-FAQ.has a feature comparison with CUDA, upto "CUDA 8.0". It should be updated to cover the features from CUDA 8.0, 9.x, 10.x. For example unified memory global and per-warp barrier...

documentation

When launching a hip program with valgrind, I get a process terminated with signal 6 (SIGABRT). This is using hipcc to compile with 2.6 installed on Ubuntu 16.04 with a...

ubuntu@linux:~$ uname -a Linux linux 4.15.0-51-generic #55ubuntu3-Ubuntu SMP Sat Jul 6 03:48:13 UTC 2019 aarch64 aarch64 aarch64 GNU/Linux ubuntu@linux:~$ cat /etc/os-release NAME="Ubuntu" VERSION="18.04.2 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04.2...

In my demo , I defined a constant variable like following . ``` __constant__ float gpu_A[MAX_LENGTH]; ... hipMemcpyToSymbol(HIP_SYMBOL(gpu_A),A,length*sizeof(float),0,hipMemcpyHostToDevice); ``` Then I want to calculate the transposition of matrix **gpu_A** on...

Usually it takes over 10-20 seconds to finish compiling only one kernel (written in C device code), is it possible to shorten such compilation time, and any side effects?

Can you shed some light on the new compiler workflow on HIP(AMD)? We currently use the deprecated HCC for our HIP codes on the AMD platform (ROCm 2.5). By reading...

type:question

I am attempting to port existing code in my research group from CUDA to HIP so that we can run it on AMD devices. Using `hipify-clang`, the conversion went quite...

type:question
hip