Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/Traccc/tests/sycl/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # TRACCC library, part of the ACTS project (R&D line)
0002 #
0003 # (c) 2022-2025 CERN for the benefit of the ACTS project
0004 #
0005 # Mozilla Public License Version 2.0
0006 
0007 include(traccc-compiler-options-sycl)
0008 
0009 include(vecmem-check-language)
0010 vecmem_check_language(SYCL)
0011 enable_language(SYCL)
0012 
0013 traccc_add_test(
0014     sycl
0015 
0016     test_kalman_fitter_telescope.cpp
0017     test_ckf_combinatorics_telescope.cpp
0018     test_ckf_toy_detector.cpp
0019     test_clusterization.cpp
0020     test_dpl.sycl
0021     test_spacepoint_formation.cpp
0022     test_barrier.sycl
0023     test_mutex.sycl
0024     test_unique_lock.sycl
0025     test_cca.cpp
0026     test_sanity_contiguous_on.sycl
0027     test_sanity_ordered_on.sycl
0028     test_sort.sycl
0029 
0030     LINK_LIBRARIES
0031     GTest::gtest_main
0032     vecmem::sycl
0033     detray::core
0034     detray::io
0035     detray::test_common
0036     traccc::core
0037     traccc::device_common
0038     traccc::sycl
0039     traccc::performance
0040     traccc::io
0041     traccc::simulation
0042     traccc_tests_common
0043     oneDPL
0044 )