You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A potential solution: Replace the if (!omp_is_inital_device) within the target region with if(isOffloading). This does not immediately resolve the issue of allowing tests to run in parallel on host however #12
See also #12
The problem is that the two target sections use:
Hence, the variables do not get set and one operates on uninitialized memory.
This test case does work if one removes this condition (or sets it unconditionally to true).
The text was updated successfully, but these errors were encountered: