FilipVaverka
FilipVaverka
@Rhynden Here is my [stab on DFT](https://github.com/FilipVaverka/hip_sycl_dft) with multiple backends using hipSYCL. Its incomplete, but basics should work. However, I'm still not happy about my solution to planning stage and...
The problem gets triggered even for example code included with hipSYCL or [syclinfo](https://github.com/illuhad/syclinfo). Unfortunately, it looks like its enough to have HIP headers included by hipSYCL HIP backend without ever...
Could we simply use [GNU atomic builtins](https://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html) to solve this problem? I've checked disassembly of "__atomic_load_n" and "__atomic_store_n" used in "__global__" region in code compiled for gfx900 with hipcc and...
I think the "build once, deploy everywhere" is priority (at least for client applications). However, I hit the issue on my development machine, which has 2 GPUs (RX Vega -...
How does mapping between devices and images work? For example, I can now compile my code as > aompcc --offload-arch gfx900 --offload-arch gfx906 -O3 main.cpp -o test However, resulting binary...
Here are tests of `offload-arch` script: ```console Login@Machine:~> $AOMP/bin/aompcc --version 13.0-4 Login@Machine:~> $AOMP/bin/offload-arch -c gfx906 sramecc- xnack- Login@Machine:~> env ROCR_VISIBLE_DEVICES=0 $AOMP/bin/offload-arch -c gfx906 xnack- Login@Machine:~> env ROCR_VISIBLE_DEVICES=1 $AOMP/bin/offload-arch -c gfx906...
Sorry, that was it. I can compile the binary with ```console Login@Machine:~> $AOMP/bin/clang++ -fopenmp --offload-arch=gfx900 --offload-arch=gfx906 -O3 main.cpp -o test ``` However, behavior of "test" binary is the same, it...
Maybe it could be done with [okhttp-digest](https://github.com/rburgst/okhttp-digest)? However, "Basic" over SSL may very well be fine - I don't see into this much.
So I've tried to build the example on Linux against ROCm 4.5.0 and I'm getting "Segmentation fault" in "hipImportExternalMemory" in libamdhip64.so. Which Vulkan runtimes are supported? (here I used opensource...
Yes, I was bit surprised seeing that as I haven't seen any information on how to setup ROCm dev. tools on Windows yet.