diff --git a/runtime/gen11/hw_info_icllp.inl b/runtime/gen11/hw_info_icllp.inl index 4955b45822..341ab04bdd 100644 --- a/runtime/gen11/hw_info_icllp.inl +++ b/runtime/gen11/hw_info_icllp.inl @@ -50,7 +50,7 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{ 1, // extraQuantityThreadsPerEU 64, // slmSize false, // blitterOperationsSupported - false, // ftrSupportsInteger64BitAtomics + true, // ftrSupportsInteger64BitAtomics false, // ftrSupportsFP64 false, // ftrSupports64BitMath true, // ftrSvm diff --git a/runtime/gen12lp/hw_info_tgllp.inl b/runtime/gen12lp/hw_info_tgllp.inl index b4b989faaa..d15c58ee60 100644 --- a/runtime/gen12lp/hw_info_tgllp.inl +++ b/runtime/gen12lp/hw_info_tgllp.inl @@ -50,7 +50,7 @@ const RuntimeCapabilityTable TGLLP::capabilityTable{ 1, // extraQuantityThreadsPerEU 64, // slmSize false, // blitterOperationsSupported - false, // ftrSupportsInteger64BitAtomics + true, // ftrSupportsInteger64BitAtomics false, // ftrSupportsFP64 false, // ftrSupports64BitMath true, // ftrSvm diff --git a/unit_tests/gen11/icllp/test_device_caps_icllp.cpp b/unit_tests/gen11/icllp/test_device_caps_icllp.cpp index d2e772d04e..5a2f046bd3 100644 --- a/unit_tests/gen11/icllp/test_device_caps_icllp.cpp +++ b/unit_tests/gen11/icllp/test_device_caps_icllp.cpp @@ -17,5 +17,5 @@ ICLLPTEST_F(IcllpTest, givenIcllpWhenSlmSizeIsRequiredThenReturnCorrectValue) { } ICLLPTEST_F(IcllpTest, givenIclLpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnFalse) { - EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics); + EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics); } diff --git a/unit_tests/gen12lp/test_device_caps_gen12lp.cpp b/unit_tests/gen12lp/test_device_caps_gen12lp.cpp index 34f637f1b0..3b94290a17 100644 --- a/unit_tests/gen12lp/test_device_caps_gen12lp.cpp +++ b/unit_tests/gen12lp/test_device_caps_gen12lp.cpp @@ -107,5 +107,5 @@ TGLLPTEST_F(TglLpUsDeviceIdTest, GivenTGLLPWhenCheckftr64KBpagesThenTrue) { } TGLLPTEST_F(TglLpUsDeviceIdTest, givenGen12lpWhenCheckFtrSupportsInteger64BitAtomicsThenReturnTrue) { - EXPECT_FALSE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics); + EXPECT_TRUE(pDevice->getHardwareInfo().capabilityTable.ftrSupportsInteger64BitAtomics); }