mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-15 10:14:56 +08:00
Enable 64 atomics on ICL and TGL
Change-Id: I2bc795ec874cb5e450dbd1d67dc599c8107cb73b Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
dbe3fef56b
commit
bfed9d04cb
@@ -50,7 +50,7 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
|
|||||||
1, // extraQuantityThreadsPerEU
|
1, // extraQuantityThreadsPerEU
|
||||||
64, // slmSize
|
64, // slmSize
|
||||||
false, // blitterOperationsSupported
|
false, // blitterOperationsSupported
|
||||||
false, // ftrSupportsInteger64BitAtomics
|
true, // ftrSupportsInteger64BitAtomics
|
||||||
false, // ftrSupportsFP64
|
false, // ftrSupportsFP64
|
||||||
false, // ftrSupports64BitMath
|
false, // ftrSupports64BitMath
|
||||||
true, // ftrSvm
|
true, // ftrSvm
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ const RuntimeCapabilityTable TGLLP::capabilityTable{
|
|||||||
1, // extraQuantityThreadsPerEU
|
1, // extraQuantityThreadsPerEU
|
||||||
64, // slmSize
|
64, // slmSize
|
||||||
false, // blitterOperationsSupported
|
false, // blitterOperationsSupported
|
||||||
false, // ftrSupportsInteger64BitAtomics
|
true, // ftrSupportsInteger64BitAtomics
|
||||||
false, // ftrSupportsFP64
|
false, // ftrSupportsFP64
|
||||||
false, // ftrSupports64BitMath
|
false, // ftrSupports64BitMath
|
||||||
true, // ftrSvm
|
true, // ftrSvm
|
||||||
|
|||||||
@@ -17,5 +17,5 @@ ICLLPTEST_F(IcllpTest, givenIcllpWhenSlmSizeIsRequiredThenReturnCorrectValue) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ICLLPTEST_F(IcllpTest, givenIclLpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnFalse) {
|
ICLLPTEST_F(IcllpTest, givenIclLpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnFalse) {
|
||||||
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
|
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -107,5 +107,5 @@ TGLLPTEST_F(TglLpUsDeviceIdTest, GivenTGLLPWhenCheckftr64KBpagesThenTrue) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TGLLPTEST_F(TglLpUsDeviceIdTest, givenGen12lpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnTrue) {
|
TGLLPTEST_F(TglLpUsDeviceIdTest, givenGen12lpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnTrue) {
|
||||||
EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
|
EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user