build: enable aub test runners for xe_hpg_core

Related-To: NEO-7579

Signed-off-by: Jakub Nowacki <jakub.nowacki@intel.com>
This commit is contained in:
Jakub Nowacki
2025-02-03 14:12:31 +00:00
committed by Compute-Runtime-Automation
parent 6cb52f71b4
commit 356557f202
10 changed files with 104 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
#
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(TESTS_XE_HPG_CORE)
add_subdirectories()
endif()

View File

@@ -0,0 +1,10 @@
#
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(TESTS_ARL AND "${NEO_BITS}" STREQUAL "64")
set(aub_test_config ${ARL_CONFIG_STR})
include(${NEO_SOURCE_DIR}/cmake/run_aub_test_target.cmake)
endif()

View File

@@ -0,0 +1,10 @@
#
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(TESTS_DG2 AND "${NEO_BITS}" STREQUAL "64")
set(aub_test_config ${DG2_CONFIG_STR})
include(${NEO_SOURCE_DIR}/cmake/run_aub_test_target.cmake)
endif()

View File

@@ -0,0 +1,10 @@
#
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(TESTS_MTL AND "${NEO_BITS}" STREQUAL "64")
set(aub_test_config ${MTL_CONFIG_STR})
include(${NEO_SOURCE_DIR}/cmake/run_aub_test_target.cmake)
endif()