Add device capability for timestamp valid bits

Change-Id: Ib4a0f4ce80f0fc3649f366ceb458e8f506a97e34
Signed-off-by: Aravind Gopalakrishnan <Aravind.Gopalakrishnan@intel.com>
This commit is contained in:
Aravind Gopalakrishnan
2020-09-18 10:58:07 -07:00
committed by sys_ocldev
parent 7fdfa870fe
commit 2e912aff52
15 changed files with 55 additions and 13 deletions

View File

@ -76,7 +76,9 @@ const RuntimeCapabilityTable EHL::capabilityTable{
false, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true // isIntegratedDevice
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
};
WorkaroundTable EHL::workaroundTable = {};

View File

@ -77,7 +77,9 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
true, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
true, // levelZeroSupported
true // isIntegratedDevice
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
};
WorkaroundTable ICLLP::workaroundTable = {};

View File

@ -76,7 +76,9 @@ const RuntimeCapabilityTable LKF::capabilityTable{
false, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true // isIntegratedDevice
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
};
WorkaroundTable LKF::workaroundTable = {};