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 // Project include(s).
0009 #include "traccc/sycl/utils/queue_wrapper.hpp"
0010 
0011 namespace traccc::sycl {
0012 
0013 queue_wrapper::queue_wrapper(void* queue) : m_queue(queue) {}
0014 
0015 void* queue_wrapper::queue() {
0016   return m_queue;
0017 }
0018 
0019 const void* queue_wrapper::queue() const {
0020   return m_queue;
0021 }
0022 
0023 }  // namespace traccc::sycl