-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
Description
We need to add a query for the "device IP version". This would be a simple addition to zeDeviceGetProperties, and could be added in a similar way as the device LUID extension.
Is there anything else we should add to the same extension while we're at it?
See: https://registry.khronos.org/OpenCL/extensions/intel/cl_intel_device_attribute_query.html
Notes:
- We already have the device ID via ze_device_properties_t.deviceId.
- We already have the number of slices via ze_device_properties_t.numSlices.
- We already have the number of sub-slices per slice via ze_device_properties_t.numSubslicesPerSlice.
- We already have the number of EUs per sub-slice via ze_device_properties_t.numEUsPerSubslice.
- We already have the number of threads per EU via ze_device_properties_t.numThreadsPerEU.
- We already have the dp4a feature flag via ze_device_module_flags_t.ZE_DEVICE_MODULE_FLAG_DP4A.
- We don't appear to have a feature flag for dpas.
petercad