Move new fields in struct to group with other uint32_t

Change-Id: I2bf9a37a7147ece654e214b648fcbfaed6898e9e
Signed-off-by: Aravind Gopalakrishnan <Aravind.Gopalakrishnan@intel.com>
This commit is contained in:
Aravind Gopalakrishnan
2020-09-29 23:00:00 -07:00
committed by sys_ocldev
parent 629efed493
commit 9c84458b65
13 changed files with 39 additions and 39 deletions

View File

@ -51,6 +51,8 @@ const RuntimeCapabilityTable EHL::capabilityTable{
1, // extraQuantityThreadsPerEU
64, // slmSize
sizeof(EHL::GRF), // grfSize
36u, // timestampValidBits
32u, // kernelTimestampValidBits
false, // blitterOperationsSupported
false, // ftrSupportsInteger64BitAtomics
false, // ftrSupportsFP64
@ -76,9 +78,7 @@ const RuntimeCapabilityTable EHL::capabilityTable{
false, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
true // isIntegratedDevice
};
WorkaroundTable EHL::workaroundTable = {};

View File

@ -52,6 +52,8 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
1, // extraQuantityThreadsPerEU
64, // slmSize
sizeof(ICLLP::GRF), // grfSize
36u, // timestampValidBits
32u, // kernelTimestampValidBits
false, // blitterOperationsSupported
true, // ftrSupportsInteger64BitAtomics
false, // ftrSupportsFP64
@ -77,9 +79,7 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
true, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
true, // levelZeroSupported
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
true // isIntegratedDevice
};
WorkaroundTable ICLLP::workaroundTable = {};

View File

@ -51,6 +51,8 @@ const RuntimeCapabilityTable LKF::capabilityTable{
1, // extraQuantityThreadsPerEU
64, // slmSize
sizeof(LKF::GRF), // grfSize
36u, // timestampValidBits
32u, // kernelTimestampValidBits
false, // blitterOperationsSupported
false, // ftrSupportsInteger64BitAtomics
false, // ftrSupportsFP64
@ -76,9 +78,7 @@ const RuntimeCapabilityTable LKF::capabilityTable{
false, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
true // isIntegratedDevice
};
WorkaroundTable LKF::workaroundTable = {};