Enable 64 atomics on ICL and TGL

Change-Id: I2bc795ec874cb5e450dbd1d67dc599c8107cb73b
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski 2019-10-30 16:14:50 +01:00 committed by sys_ocldev
parent dbe3fef56b
commit bfed9d04cb
4 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
1, // extraQuantityThreadsPerEU
64, // slmSize
false, // blitterOperationsSupported
false, // ftrSupportsInteger64BitAtomics
true, // ftrSupportsInteger64BitAtomics
false, // ftrSupportsFP64
false, // ftrSupports64BitMath
true, // ftrSvm

View File

@ -50,7 +50,7 @@ const RuntimeCapabilityTable TGLLP::capabilityTable{
1, // extraQuantityThreadsPerEU
64, // slmSize
false, // blitterOperationsSupported
false, // ftrSupportsInteger64BitAtomics
true, // ftrSupportsInteger64BitAtomics
false, // ftrSupportsFP64
false, // ftrSupports64BitMath
true, // ftrSvm

View File

@ -17,5 +17,5 @@ ICLLPTEST_F(IcllpTest, givenIcllpWhenSlmSizeIsRequiredThenReturnCorrectValue) {
}
ICLLPTEST_F(IcllpTest, givenIclLpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnFalse) {
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
}

View File

@ -107,5 +107,5 @@ TGLLPTEST_F(TglLpUsDeviceIdTest, GivenTGLLPWhenCheckftr64KBpagesThenTrue) {
}
TGLLPTEST_F(TglLpUsDeviceIdTest, givenGen12lpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnTrue) {
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
}