mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 13:54:58 +08:00
build: update default PTL revision to B0
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
eff2d1cde8
commit
f6b92aa5d5
@@ -298,7 +298,7 @@ if(SUPPORT_XE3_CORE)
|
|||||||
if(SUPPORT_PTL)
|
if(SUPPORT_PTL)
|
||||||
ADD_AOT_DEFINITION(XE3_LPG)
|
ADD_AOT_DEFINITION(XE3_LPG)
|
||||||
ADD_AOT_DEFINITION(PTL)
|
ADD_AOT_DEFINITION(PTL)
|
||||||
set(PTL_XE3_CORE_REVISIONS 0)
|
set(PTL_XE3_CORE_REVISIONS 4)
|
||||||
set(PTL_XE3_CORE_RELEASES "30.0.0" "30.0.4" "30.1.0" "30.1.1")
|
set(PTL_XE3_CORE_RELEASES "30.0.0" "30.0.4" "30.1.0" "30.1.1")
|
||||||
ADD_PRODUCT("SUPPORTED" "PTL" "IGFX_PTL")
|
ADD_PRODUCT("SUPPORTED" "PTL" "IGFX_PTL")
|
||||||
ADD_PLATFORM_FOR_CORE_TYPE("SUPPORTED" "XE3_CORE" "PTL")
|
ADD_PLATFORM_FOR_CORE_TYPE("SUPPORTED" "XE3_CORE" "PTL")
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ components:
|
|||||||
branch: master
|
branch: master
|
||||||
dest_dir: infra
|
dest_dir: infra
|
||||||
fetch_tags: true
|
fetch_tags: true
|
||||||
revision: v6846
|
revision: v6875
|
||||||
type: git
|
type: git
|
||||||
converter: M-3107
|
converter: M-3107
|
||||||
version: '1'
|
version: '1'
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ components:
|
|||||||
aub_configs:
|
aub_configs:
|
||||||
branch: aub_configs
|
branch: aub_configs
|
||||||
dest_dir: aub_configs
|
dest_dir: aub_configs
|
||||||
revision: c61eb321f2751d50e890a900d9301f9e995ffdcd
|
revision: b08d1653ff1f44a0c0e3da37cf57ab789b132a32
|
||||||
type: git
|
type: git
|
||||||
aub_stream:
|
aub_stream:
|
||||||
branch: master
|
branch: master
|
||||||
@@ -41,7 +41,7 @@ components:
|
|||||||
dest_dir: kernels_bin
|
dest_dir: kernels_bin
|
||||||
type: git
|
type: git
|
||||||
branch: kernels_bin
|
branch: kernels_bin
|
||||||
revision: 3381-4003
|
revision: 3381-4005
|
||||||
kmdaf:
|
kmdaf:
|
||||||
branch: kmdaf
|
branch: kmdaf
|
||||||
dest_dir: kmdaf
|
dest_dir: kmdaf
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ constexpr auto gfxProduct = IGFX_PTL;
|
|||||||
namespace NEO {
|
namespace NEO {
|
||||||
template <>
|
template <>
|
||||||
uint32_t CompilerProductHelperHw<gfxProduct>::getDefaultHwIpVersion() const {
|
uint32_t CompilerProductHelperHw<gfxProduct>::getDefaultHwIpVersion() const {
|
||||||
return AOT::PTL_H_A0;
|
return AOT::PTL_H_B0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static EnableCompilerProductHelper<gfxProduct> enableCompilerProductHelperPTL;
|
static EnableCompilerProductHelper<gfxProduct> enableCompilerProductHelperPTL;
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ const PLATFORM PTL::platform = {
|
|||||||
IGFX_XE3_CORE,
|
IGFX_XE3_CORE,
|
||||||
PLATFORM_NONE, // default init
|
PLATFORM_NONE, // default init
|
||||||
0, // usDeviceID
|
0, // usDeviceID
|
||||||
0, // usRevId. 0 sets the stepping to A0
|
4, // usRevId. 0 sets the stepping to A0
|
||||||
0, // usDeviceID_PCH
|
0, // usDeviceID_PCH
|
||||||
0, // usRevId_PCH
|
0, // usRevId_PCH
|
||||||
GTTYPE_UNDEFINED};
|
GTTYPE_UNDEFINED};
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ PTLTEST_F(PtlProductHelper, whenGettingPreferredAllocationMethodThenAllocateByKm
|
|||||||
}
|
}
|
||||||
|
|
||||||
PTLTEST_F(PtlProductHelper, givenCompilerProductHelperWhenGetDefaultHwIpVersionThenCorrectValueIsSet) {
|
PTLTEST_F(PtlProductHelper, givenCompilerProductHelperWhenGetDefaultHwIpVersionThenCorrectValueIsSet) {
|
||||||
EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_A0);
|
EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_B0);
|
||||||
}
|
}
|
||||||
|
|
||||||
HWTEST_EXCLUDE_PRODUCT(CompilerProductHelperFixture, WhenIsMidThreadPreemptionIsSupportedIsCalledThenCorrectResultIsReturned, IGFX_PTL);
|
HWTEST_EXCLUDE_PRODUCT(CompilerProductHelperFixture, WhenIsMidThreadPreemptionIsSupportedIsCalledThenCorrectResultIsReturned, IGFX_PTL);
|
||||||
|
|||||||
@@ -5,6 +5,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
if(TESTS_PTL)
|
if(TESTS_PTL)
|
||||||
set(unit_test_config "ptl/2/4/8/0")
|
set(unit_test_config "ptl/2/4/8/4")
|
||||||
include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake)
|
include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake)
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Reference in New Issue
Block a user