Evgeny Mankov

Results 82 comments of Evgeny Mankov

`__shfl_up_sync`, `__shfl_down_sync`, and `__shfl_xor_sync` as well.

> Hi, I was trying to hipify a code and there are a few calls to __shfl_down_sync. The __shfl_down is deprecated, so it can not be used with CUDA 11....

> The specific constant I'm using there (`__HIP_PLATFORM_HCC`) is old, so a newer one would be better. What do you mean by `old`?

1. `cudaMallocManaged` is supported by HIP and HIPIFY. 2. Could you point out where `cublasgetrfBatched` and `cublasgetriBatched` are declared? I haven't found them in CUDA Toolkits. 3. Please open a...

Do you need `cuMemPrefetchAsync` or `cudaMemPrefetchAsync`?

@bensander, it looks like IPC is currently not supported by HIP. So. I've just erroneously added such support in hipify-clang.

IPC is supported to some degree by HIP and HIPIFY tools. `hipIpcEventHandle_t` is supported by both since HIP 3.5.0. As for correctness, + @mangupta.

HI @Lookforworld, Could you please provide the full log of hipify-clang's CMake and Make command lines?

Most likely, the path to LLVM was specified incorrectly. Based on the info provided in the ticket and [HIPIFY usage documentation]( https://github.com/ROCm/HIPIFY/blob/amd-staging/docs/hipify-clang.rst#usage), clang should be specified differently, for instance: `--clang-resource-directory=/opt/rocm-6.1.1/lib/clang/18`...

Hello @mcordery, I don't quite understand the aims of the supposed `--convert-headers-only`. Is the goal just to reduce the hipification time (hipify-clang, hipify-perl, both?), or is hipification of the source...