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
[SYCL] quick fix for no_duplicate_devices (#15337)
quick fix for no_duplicate_devices that also works around the extra
logging being performed by URLZ
The problem is that URLZA added unguarded debug statements. So every run
of any sycl app outputs ```ZE_LOADER_DEBUG_TRACE:Using Loader Library
Path:
ZE_LOADER_DEBUG_TRACE:Tracing Layer Library Path:
libze_tracing_layer.so.1``` when running on stderr, even without setting
DEBUG_TRACE.
This test failed because it uses `&>` to pipe both stderr and stdout to
the FileCheck, which then chokes on the unexpected output. This PR fixes
this test by using just `>`.
The change to URLZA to NOT constantly output is under review, IIRC.
0 commit comments