Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2025 CERN for the benefit of the ACTS project
0004  *
0005  * Mozilla Public License Version 2.0
0006  */
0007 
0008 #pragma once
0009 
0010 // Project include(s).
0011 #include "traccc/ambiguity_resolution/ambiguity_resolution_config.hpp"
0012 #include "traccc/ambiguity_resolution/device/fill_vectors.hpp"
0013 
0014 namespace traccc::cuda::kernels {
0015 
0016 __global__ void fill_vectors(const ambiguity_resolution_config cfg,
0017                              device::fill_vectors_payload payload);
0018 }