
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Acked-by: Dylan Baker <dylan.c.baker@intel.com> Acked-by: Eric Engestrom <eric@igalia.com> Acked-by: Daniel Stone <daniels@collabora.com> Signed-off-by: David Heidelberg <david@ixit.cz> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29972>
65 lines
1.7 KiB
Meson
65 lines
1.7 KiB
Meson
# Copyright © 2020 Valve Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
aco_tests_files = files(
|
|
'framework.h',
|
|
'helpers.cpp',
|
|
'helpers.h',
|
|
'main.cpp',
|
|
'test_assembler.cpp',
|
|
'test_builder.cpp',
|
|
'test_d3d11_derivs.cpp',
|
|
'test_hard_clause.cpp',
|
|
'test_insert_nops.cpp',
|
|
'test_insert_waitcnt.cpp',
|
|
'test_isel.cpp',
|
|
'test_lower_subdword.cpp',
|
|
'test_optimizer.cpp',
|
|
'test_reduce_assign.cpp',
|
|
'test_regalloc.cpp',
|
|
'test_optimizer_postRA.cpp',
|
|
'test_scheduler.cpp',
|
|
'test_sdwa.cpp',
|
|
'test_to_hw_instr.cpp',
|
|
'test_tests.cpp',
|
|
)
|
|
|
|
spirv_files = files(
|
|
'test_isel.cpp',
|
|
'test_d3d11_derivs.cpp',
|
|
)
|
|
|
|
gen_spirv = generator(
|
|
prog_python,
|
|
output : '@BASENAME@-spirv.h',
|
|
arguments : [
|
|
join_paths(meson.current_source_dir(), 'glsl_scraper.py'),
|
|
'@INPUT@', '--with-glslang', prog_glslang.full_path(), '-o', '@OUTPUT@',
|
|
],
|
|
)
|
|
gen_spirv_files = gen_spirv.process(spirv_files)
|
|
|
|
test(
|
|
'aco_tests',
|
|
executable(
|
|
'aco_tests',
|
|
[aco_tests_files, gen_spirv_files],
|
|
cpp_args : ['-DACO_TEST_SOURCE_DIR="@0@"'.format(meson.current_source_dir()),
|
|
'-DACO_TEST_BUILD_ROOT="@0@"'.format(meson.project_build_root()),
|
|
'-DACO_TEST_PYTHON_BIN="@0@"'.format(prog_python.full_path())] +
|
|
cpp_args_aco,
|
|
include_directories : [
|
|
inc_include, inc_src, inc_amd, inc_amd_common, inc_amd_common_llvm,
|
|
],
|
|
link_with : [
|
|
libamd_common, libamd_common_llvm, libvulkan_radeon,
|
|
],
|
|
dependencies : [
|
|
dep_llvm, dep_thread, idep_aco, idep_nir, idep_mesautil, idep_vulkan_util_headers, idep_amdgfxregs_h,
|
|
],
|
|
gnu_symbol_visibility : 'hidden',
|
|
build_by_default : true,
|
|
),
|
|
suite : ['amd', 'compiler'],
|
|
)
|