File indexing completed on 2026-07-26 08:22:10
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include "../../utils/thread_id.hpp"
0010 #include "reify_cluster_data.cuh"
0011
0012
0013 #include "traccc/clusterization/device/reify_cluster_data.hpp"
0014
0015 namespace traccc::cuda::kernels {
0016 __global__ void reify_cluster_data(
0017 vecmem::data::vector_view<const unsigned int> disjoint_set_view,
0018 vecmem::data::vector_view<const unsigned int> permutation_map_view,
0019 traccc::edm::silicon_cluster_collection::view cluster_view) {
0020 device::reify_cluster_data(details::thread_id1{}.getGlobalThreadId(),
0021 disjoint_set_view, permutation_map_view,
0022 cluster_view);
0023 }
0024 }