Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dyniols committed Jan 17, 2025
1 parent 5c28c85 commit 9f6babd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions test/conformance/device/urDeviceGetInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,13 @@ UUR_DEVICE_TEST_SUITE_P(
UR_DEVICE_INFO_2D_BLOCK_ARRAY_CAPABILITIES_EXP, //
UR_DEVICE_INFO_PREFERRED_VECTOR_WIDTH_DOUBLE, //
UR_DEVICE_INFO_PREFERRED_VECTOR_WIDTH_HALF, //
UR_DEVICE_INFO_PREFERRED_VECTOR_WIDTH_INT //
),
uur::deviceTestWithParamPrinter<ur_device_info_t>);
UR_DEVICE_INFO_PREFERRED_VECTOR_WIDTH_INT, //
UR_DEVICE_INFO_NUM_COMPUTE_UNITS),
[](const ::testing::TestParamInfo<ur_device_info_t> &info) {
std::stringstream ss;
ss << info.param;
return ss.str();
});

using urDeviceGetInfoSingleTest = uur::urDeviceTest;
UUR_INSTANTIATE_DEVICE_TEST_SUITE_P(urDeviceGetInfoSingleTest);
Expand Down

0 comments on commit 9f6babd

Please sign in to comment.