File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
sycl/plugins/unified_runtime/ur/adapters/level_zero Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -181,8 +181,14 @@ struct _ur_device_handle_t : _ur_object {
181
181
182
182
bool isSubDevice () { return RootDevice != nullptr ; }
183
183
184
- // Is this a Data Center GPU Max series (aka PVC).
185
- bool isPVC () { return (ZeDeviceProperties->deviceId & 0xff0 ) == 0xbd0 ; }
184
+ // Is this a Data Center GPU Max series (aka PVC)?
185
+ // TODO: change to use
186
+ // https://spec.oneapi.io/level-zero/latest/core/api.html#ze-device-ip-version-ext-t
187
+ // when that is stable.
188
+ bool isPVC () {
189
+ return (ZeDeviceProperties->deviceId & 0xff0 ) == 0xbd0 ||
190
+ (ZeDeviceProperties->deviceId & 0xff0 ) == 0xb60 ;
191
+ }
186
192
187
193
// Does this device represent a single compute slice?
188
194
bool isCCS () const {
You can’t perform that action at this time.
0 commit comments