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
When running a CTS in a multi-device system, I see errors like:
[ FATAL ]/unified-runtime/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-param-util.h:586::
Condition test_param_names.count(param_name) == 0 failed.
Duplicate parameterized test name 'Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___Intel_R__Data_Center_GPU_Max_1550_', in /unified-runtime/test/conformance/context/urContextCreate.cpp line 10
where the name for tests are created for a set of devices, so if we have multiple devices with the same name, then test aborts.
WA at least for L0- for now is to use ZE_AFFINITY_MASK=0 to select only the first device.
@kbenzie , @pbalcer : are we aware of this? is there a way of fixing it w/o requiring the use of the affinity mask, or in the future, of the ONEAPI_DEVICE_SELECTOR?
The text was updated successfully, but these errors were encountered:
When running a CTS in a multi-device system, I see errors like:
the problem seem to be here
https://github.com/oneapi-src/unified-runtime/blob/adapters/test/conformance/testing/include/uur/fixtures.h#L97
::testing::ValuesIn(uur::DevicesEnvironment::instance->devices), \
where the name for tests are created for a set of devices, so if we have multiple devices with the same name, then test aborts.
WA at least for L0- for now is to use ZE_AFFINITY_MASK=0 to select only the first device.
@kbenzie , @pbalcer : are we aware of this? is there a way of fixing it w/o requiring the use of the affinity mask, or in the future, of the ONEAPI_DEVICE_SELECTOR?
The text was updated successfully, but these errors were encountered: