Skip to content

Commit

Permalink
Correct size of UR_DEVICE_INFO_MEMORY_BUS_WIDTH in CTS test.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongreig committed Jul 6, 2023
1 parent f72f449 commit ae2c403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/conformance/device/urDeviceGetInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static std::unordered_map<ur_device_info_t, size_t> device_info_size_map = {
{UR_DEVICE_INFO_BFLOAT16, sizeof(ur_bool_t)},
{UR_DEVICE_INFO_MAX_COMPUTE_QUEUE_INDICES, sizeof(uint32_t)},
{UR_DEVICE_INFO_KERNEL_SET_SPECIALIZATION_CONSTANTS, sizeof(ur_bool_t)},
{UR_DEVICE_INFO_MEMORY_BUS_WIDTH, sizeof(ur_bool_t)},
{UR_DEVICE_INFO_MEMORY_BUS_WIDTH, sizeof(uint32_t)},
{UR_DEVICE_INFO_MAX_WORK_GROUPS_3D, sizeof(size_t[3])},
{UR_DEVICE_INFO_ASYNC_BARRIER, sizeof(ur_bool_t)},
{UR_DEVICE_INFO_MEM_CHANNEL_SUPPORT, sizeof(ur_bool_t)},
Expand Down

0 comments on commit ae2c403

Please sign in to comment.