Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-07-26 08:22:14

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2023-2025 CERN for the benefit of the ACTS project
0004  *
0005  * Mozilla Public License Version 2.0
0006  */
0007 
0008 // Local include(s).
0009 #include "traccc/examples/throughput_st.hpp"
0010 
0011 #include "traccc/examples/alpaka/full_chain_algorithm.hpp"
0012 
0013 int main(int argc, char* argv[]) {
0014   // Execute the throughput test.
0015   return traccc::throughput_st<traccc::alpaka::full_chain_algorithm>(
0016       "Single-threaded Alpaka GPU throughput tests", argc, argv);
0017 }