Nils Friess

Results 28 comments of Nils Friess

I wanted to first finish #226 so that we can also add tests for the CUDA backends to the GitHub CI. But I can also first finish this PR with...

I tried to reproduce the examples and without additional flags, neither the USM nor the buffer accessor reproducer generate fast assembly (i.e., `global_atomic_add_f32` instructions). When compiling with `-munsafe-fp-atomics` the USM...

I am using ROCm 5.1.1 and I am compiling with `syclcc -munsafe-fp-atomics -O3 -save-temps=obj --hipsycl-targets=hip:gfx908`.

I tried to reproduce your error @alexschroeter but when trying to run the python script, I am getting the error `ModuleNotFoundError: No module named 'pyexamples'`. I tried this in a...

I could not reproduce the exact error you got, however I am getting a very similar one: ``` [hipSYCL Warning] backend_loader: Could not load backend plugin: /opt/hipSYCL/lib/hipSYCL/librt-backend-hip.so [hipSYCL Warning] /opt/hipSYCL/lib/hipSYCL/librt-backend-hip.so:...

Just to give a quick update @mmeterel : We had some troubles with the cuBLAS backend (see #245 and #249), this is why this PR did not receive any updates....

The tests are a separate CMake project, to build it (assuming you are in the `tests` directory) run ``` cmake -DOpenSYCL_DIR="/path/to/OpenSYCL installation/lib/cmake/OpenSYCL" -DOPENSYCL_TARGETS="omp;hip:gfx801" cmake --build build ``` The targets `omp;hip:gfx801`...

I've now also added tests for two- and three-dimensional reductions (both "general" reductions as well as reductions with `local_size = 1`. I also removed the the timeout test described above...

I opened #1224 which only contains the additional check for `const` member functions. I'm quite sure that this is actually missing, so I think we can safely include #1224 in...

Thanks for reporting. Could you share a small reproducer?