Warning, /acts/Traccc/device/hip/src/clusterization/kernels/reify_cluster_data.hip is written in an unsupported language. File is not indexed.
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 // Local include(s).
0009 #include "../../utils/thread_id.hpp"
0010 #include "reify_cluster_data.hpp"
0011
0012 // Project include(s).
0013 #include "traccc/clusterization/device/reify_cluster_data.hpp"
0014
0015 namespace traccc::hip::kernels {
0016
0017 __global__ void reify_cluster_data(
0018 vecmem::data::vector_view<const unsigned int> disjoint_set_view,
0019 vecmem::data::vector_view<const unsigned int> permutation_map_view,
0020 traccc::edm::silicon_cluster_collection::view cluster_view) {
0021 device::reify_cluster_data(details::thread_id1{}.getGlobalThreadId(),
0022 disjoint_set_view, permutation_map_view,
0023 cluster_view);
0024 }
0025
0026 } // namespace traccc::hip::kernels