diff --git a/opencl/test/unit_test/gen12lp/adls/linux/dll/device_id_tests_adls.cpp b/opencl/test/unit_test/gen12lp/adls/linux/dll/device_id_tests_adls.cpp index 873466f8b0..fc04ed991c 100644 --- a/opencl/test/unit_test/gen12lp/adls/linux/dll/device_id_tests_adls.cpp +++ b/opencl/test/unit_test/gen12lp/adls/linux/dll/device_id_tests_adls.cpp @@ -10,7 +10,7 @@ using namespace NEO; TEST_F(DeviceIdTests, GivenAdlsSupportedDeviceIdThenHardwareInfoIsCorrect) { - std::array expectedDescriptors = {{ + std::array expectedDescriptors = {{ {0x4680, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, {0x4682, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, {0x4688, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, @@ -24,6 +24,7 @@ TEST_F(DeviceIdTests, GivenAdlsSupportedDeviceIdThenHardwareInfoIsCorrect) { {0xA783, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, {0xA788, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, {0xA789, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, + {0xA78B, &AdlsHwConfig::hwInfo, &AdlsHwConfig::setupHardwareInfo}, }}; testImpl(expectedDescriptors); diff --git a/shared/source/dll/devices/devices_base.inl b/shared/source/dll/devices/devices_base.inl index 416f3c4343..108274d2c4 100644 --- a/shared/source/dll/devices/devices_base.inl +++ b/shared/source/dll/devices/devices_base.inl @@ -70,6 +70,7 @@ DEVICE( 0xA782, AdlsHwConfig ) DEVICE( 0xA783, AdlsHwConfig ) DEVICE( 0xA788, AdlsHwConfig ) DEVICE( 0xA789, AdlsHwConfig ) +DEVICE( 0xA78B, AdlsHwConfig ) #endif #ifdef SUPPORT_ADLN diff --git a/shared/source/gen12lp/adls/device_ids_configs_adls.h b/shared/source/gen12lp/adls/device_ids_configs_adls.h index 4f20a6f639..9899b3843a 100644 --- a/shared/source/gen12lp/adls/device_ids_configs_adls.h +++ b/shared/source/gen12lp/adls/device_ids_configs_adls.h @@ -23,6 +23,7 @@ static const std::vector adlsDeviceIds{ 0xA782, 0xA783, 0xA788, - 0xA789}; + 0xA789, + 0xA78B}; } // namespace NEO