barrier causes random deadlocks in JTP mode for non-tiny ranges #8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
the following code:
gives me an output similar to the below:
It works perfectly fine on GPU (without
kernel.setExecutionMode(EXECUTION_MODE.JTP);line) or without theglobalBarrier();line.My environment:
aparapi 3.0.0
openJDK 11 (11.0.11+9-0ubuntu2~18.04)
ubuntu 18.04
Intel(R) Core(TM) i7-7560U CPU (2 physical + 2 virtual cores)
during successful runs, all 4 cores are uniformly utilized at about 50%. During deadlock runs, it starts the same: all 4 cores utilized at about 50% for about 5-7 seconds and then CPU usage goes virtually to 0.
changed the description