Back to home page

EIC code displayed by LXR

 
 

    


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

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 #include "../../utils/global_index.hpp"
0009 #include "remove_duplicates.cuh"
0010 #include "traccc/finding/device/remove_duplicates.hpp"
0011 
0012 namespace traccc::cuda::kernels {
0013 
0014 __global__ void remove_duplicates(
0015     const __grid_constant__ finding_config cfg,
0016     const __grid_constant__ device::remove_duplicates_payload payload) {
0017   device::remove_duplicates(details::global_index1(), cfg, payload);
0018 }
0019 
0020 }  // namespace traccc::cuda::kernels