-
Is hipify-clang working for source codes that includes CUDA-related local headers?
-
Hipify ought to be able to cope with whatever version of C++ is supported by the clang it was compiled against. Unfortunately, if you do something like:
```
hipify-clang concurentKernels.cu -- -x …
-
**[How To Repro]**
./hipify-clang -print-stats /srv/git/thrust/examples/cuda/fallback_allocator.cu -- -x cuda -I/srv/git/thrust -I/srv/git/HIP-TOT/include -D__CUDA_ARCH__=750 -v
Similar crash is …
-
Hi,
I have been trying to run Hipify-clang on a YOLO algorithm written using CUDA. However, hipify-clang does not correctly generate a HIP version of the CUDA file. Below are some of the errors I a…
-
The issue is observed after syncing with latest https://github.com/NVlabs/cub.git
```
FAIL: hipify :: unit_tests/libraries/CUB/cub_01.cu (25 of 68)
******************** TEST 'hipify :: unit_tests…
-
This snippet of axpy.cu code is from [Compiling CUDA with clang](https://llvm.org/docs/CompileCudaWithLLVM.html) This code is verified that it can be successfully compiled by clang using:
`clang++ …
-
Kernel members of namespaces are translated incorrectly by hipify-per.
CUDA code:
```
#include
namespace first
{
__global__ void test()
{
int a=10;
}
}
int main()
{
first::te…
-
When I convert below code from CUDA to HIP by hipify (hipconvertinplace.sh)
```
# kernel.cu
__global__
void kernel(double z[], const double x[], const double y[])
{
const auto i = (blockIdx.x * b…
-
- Passing `-o-stats` without also passing `-print-stats` silently does nothing. No stats anywhere, no warning, and no mention of this behaviour in the help text.
- Passing both options together does …
-
Since f19e7c29dfcef3d0c941c977ce6d1448ad4e288a commit hipcc cannot compile CUDA codes
on Nvidia machines, the compilation fails with this error:
```
$ pwd
/home/kaveh/source/HIP/samples/0_Intro/…