mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
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:

committed by
sys_ocldev

parent
629efed493
commit
9c84458b65
@ -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 = {};
|
||||
|
@ -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 = {};
|
||||
|
@ -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 = {};
|
||||
|
@ -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 = {};
|
||||
|
@ -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 = {};
|
||||
|
Reference in New Issue
Block a user