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

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

View File

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

View File

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

View File

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

View File

@ -56,6 +56,8 @@ const RuntimeCapabilityTable SKL::capabilityTable{
0, // extraQuantityThreadsPerEU
64, // slmSize
sizeof(SKL::GRF), // grfSize
36u, // timestampValidBits
32u, // kernelTimestampValidBits
false, // blitterOperationsSupported
true, // ftrSupportsInteger64BitAtomics
true, // ftrSupportsFP64
@ -81,9 +83,7 @@ const RuntimeCapabilityTable SKL::capabilityTable{
true, // supportsIndependentForwardProgress
true, // hostPtrTrackingEnabled
true, // levelZeroSupported
true, // isIntegratedDevice
36u, // timestampValidBits
32u // kernelTimestampValidBits
true // isIntegratedDevice
};
WorkaroundTable SKL::workaroundTable = {};
FeatureTable SKL::featureTable = {};