Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2022 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/sycl/utils/queue_wrapper.hpp"
0012 
0013 // SYCL include(s).
0014 #include <sycl/sycl.hpp>
0015 
0016 namespace traccc::sycl::details {
0017 
0018 /// Helper function for getting a @c sycl::queue out of
0019 /// @c traccc::sycl::queue_wrapper (non-const)
0020 ::sycl::queue& get_queue(traccc::sycl::queue_wrapper& queue);
0021 
0022 /// Helper function for getting a @c sycl::queue out of
0023 /// @c traccc::sycl::queue_wrapper (const)
0024 const ::sycl::queue& get_queue(const traccc::sycl::queue_wrapper& queue);
0025 
0026 }  // namespace traccc::sycl::details