David M. Rogers
David M. Rogers
In release 3.1.0, compiling using gcc/10.3 works almost out of the box for me. I still get an error on std::transform though. I had to fix it with: ``` diff...
From a toolkit user's perspective: as long as the changes don’t adversely affect my existing code/workflow or require me to do a lot of updating / new steps, I don’t...
Well, it's an example use of the library. Users wanting the CPM path will be downloading hemi this way, and will want an example that does that. There are more...
I don't see the same error on rocm 4.5.0: ``` HIP version : 4.4.21401-bedc5f61 == hipconfig HIP_PATH : /opt/rocm-4.5.0/hip ROCM_PATH : /opt/rocm-4.5.0 HIP_COMPILER : clang HIP_PLATFORM : amd HIP_RUNTIME :...
std::atomic does not work in GPU device code. You should use the atomicAdd, atomicAnd, atomicCAS, etc. device intrinsics instead. See https://docs.amd.com/bundle/HIP_Supported_CUDA_API_Reference_Guide/page/CUDA_Device_API_supported_by_HIP.html
My implementation of skip-lists does something like this. Parsing your string, {"jsonrpc":"2.0","method":"echo","params":["hello", "world"],"id":1} creates 10 tokens: '{'(10) "jsonrpc"(2) "2.0"(1) "method"(2) "echo"(1) "params"(4) '['(3) "hello"(1) "world"(1) "id"(2) 1(1) Skip instead of...
On my system, I found rocm 5.2.0 still had the issue, but it's fixed starting from rocm 5.3.0 and onward.
I have removed the pkg.m4 copied-in here. Now only 2 lines are changed.
The autotools build log indicates a permissions error ``` 162 make[1]: Entering directory '/home/runner/work/bubblewrap/bubblewrap/_build/bubblewrap-0.8.0/_build/sub' /usr/bin/mkdir: cannot create directory ‘../../.deps’: Permission denied ``` It is related to the chmod/mkdir sequence earlier:...
Update - it's possible I deadlocked one of my application kernels by calling a sycl::group_broadcast from not all threads. This may trigger resource counting troubles.