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 38b0e8d commit 47d3937Copy full SHA for 47d3937
unified-runtime/source/adapters/level_zero/device.cpp
@@ -1452,6 +1452,15 @@ ur_result_t urDeviceGetInfo(
1452
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
1453
}
1454
1455
+ case UR_DEVICE_INFO_CLOCK_SUB_GROUP_SUPPORT_EXP: {
1456
+ // IGC supports this since v.2.16.0
1457
+ return ReturnValue(
1458
+ Device->Platform->isDriverVersionNewerOrSimilar(1, 6, 34666));
1459
+ }
1460
+ case UR_DEVICE_INFO_CLOCK_WORK_GROUP_SUPPORT_EXP:
1461
+ case UR_DEVICE_INFO_CLOCK_DEVICE_SUPPORT_EXP:
1462
+ // Currently GPUs only support sub-group clock.
1463
+ return ReturnValue(false);
1464
default:
1465
UR_LOG(ERR, "Unsupported ParamName in urGetDeviceInfo");
1466
UR_LOG(ERR, "ParamNameParamName={}(0x{})", ParamName,
0 commit comments