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
{{ message }}
This repository was archived by the owner on Mar 28, 2023. It is now read-only.
[SYCL] Prevent skipped GPU run from overwriting CPU output in DeviceLib/assert.cpp (#1228)
Though the two potential runs in DeviceLib/assert.cpp are mutually
exclusive, skipping the latter run (GPU) will still trigger a write
to the output file, overwriting the results from the previous (CPU) run.
To avoid this, these changes first ensures the output file is cleared
then makes the runs append their output to the file. Since the runs are
mutually exclusive the file should at most contain the output of one
expected run.
Signed-off-by: Larsen, Steffen <[email protected]>
0 commit comments