mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
This change allows for modifying kernel's barrier count based on called external functions metadata passed via zeInfo section in zebin. Added parsing external functions metadata. Added resolving external functions call graph. Added updating kernel barriers based on called external functions. Added support for L0 dynamic link. Signed-off-by: Krystian Chmielewski <krystian.chmielewski@intel.com>
18 lines
662 B
CMake
18 lines
662 B
CMake
#
|
|
# Copyright (C) 2019-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(${TARGET_NAME} PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_cache_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_interface_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external_functions_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/intermediate_representations_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker_mock.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker_tests.cpp
|
|
)
|
|
|