We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580ab4d commit dd00ff6Copy full SHA for dd00ff6
sycl/plugins/unified_runtime/ur/adapters/level_zero/device.cpp
@@ -341,9 +341,8 @@ UR_APIEXPORT ur_result_t UR_APICALL urDeviceGetInfo(
341
}
342
343
if (Device->isCCS()) {
344
- ur_device_partition_property_t cslice = {
345
- UR_DEVICE_PARTITION_BY_CSLICE,
346
- };
+ ur_device_partition_property_t cslice{};
+ cslice.type = UR_DEVICE_PARTITION_BY_CSLICE;
347
348
return ReturnValue(cslice);
349
0 commit comments