Skip to content

Commit f6b92aa

Browse files
build: update default PTL revision to B0
Signed-off-by: Mateusz Jablonski <[email protected]>
1 parent eff2d1c commit f6b92aa

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

cmake/setup_platform_flags.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ if(SUPPORT_XE3_CORE)
298298
if(SUPPORT_PTL)
299299
ADD_AOT_DEFINITION(XE3_LPG)
300300
ADD_AOT_DEFINITION(PTL)
301-
set(PTL_XE3_CORE_REVISIONS 0)
301+
set(PTL_XE3_CORE_REVISIONS 4)
302302
set(PTL_XE3_CORE_RELEASES "30.0.0" "30.0.4" "30.1.0" "30.1.1")
303303
ADD_PRODUCT("SUPPORTED" "PTL" "IGFX_PTL")
304304
ADD_PLATFORM_FOR_CORE_TYPE("SUPPORTED" "XE3_CORE" "PTL")

manifests/infra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ components:
33
branch: master
44
dest_dir: infra
55
fetch_tags: true
6-
revision: v6846
6+
revision: v6875
77
type: git
88
converter: M-3107
99
version: '1'

manifests/manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ components:
22
aub_configs:
33
branch: aub_configs
44
dest_dir: aub_configs
5-
revision: c61eb321f2751d50e890a900d9301f9e995ffdcd
5+
revision: b08d1653ff1f44a0c0e3da37cf57ab789b132a32
66
type: git
77
aub_stream:
88
branch: master
@@ -41,7 +41,7 @@ components:
4141
dest_dir: kernels_bin
4242
type: git
4343
branch: kernels_bin
44-
revision: 3381-4003
44+
revision: 3381-4005
4545
kmdaf:
4646
branch: kmdaf
4747
dest_dir: kmdaf

shared/source/xe3_core/enable_compiler_product_helper_ptl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ constexpr auto gfxProduct = IGFX_PTL;
2020
namespace NEO {
2121
template <>
2222
uint32_t CompilerProductHelperHw<gfxProduct>::getDefaultHwIpVersion() const {
23-
return AOT::PTL_H_A0;
23+
return AOT::PTL_H_B0;
2424
}
2525

2626
static EnableCompilerProductHelper<gfxProduct> enableCompilerProductHelperPTL;

shared/source/xe3_core/hw_info_ptl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const PLATFORM PTL::platform = {
2727
IGFX_XE3_CORE,
2828
PLATFORM_NONE, // default init
2929
0, // usDeviceID
30-
0, // usRevId. 0 sets the stepping to A0
30+
4, // usRevId. 0 sets the stepping to A0
3131
0, // usDeviceID_PCH
3232
0, // usRevId_PCH
3333
GTTYPE_UNDEFINED};

shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ PTLTEST_F(PtlProductHelper, whenGettingPreferredAllocationMethodThenAllocateByKm
3030
}
3131

3232
PTLTEST_F(PtlProductHelper, givenCompilerProductHelperWhenGetDefaultHwIpVersionThenCorrectValueIsSet) {
33-
EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_A0);
33+
EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_B0);
3434
}
3535

3636
HWTEST_EXCLUDE_PRODUCT(CompilerProductHelperFixture, WhenIsMidThreadPreemptionIsSupportedIsCalledThenCorrectResultIsReturned, IGFX_PTL);

target_unit_tests/xe3_core/ptl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
#
66

77
if(TESTS_PTL)
8-
set(unit_test_config "ptl/2/4/8/0")
8+
set(unit_test_config "ptl/2/4/8/4")
99
include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake)
1010
endif()

0 commit comments

Comments
 (0)