vecmem 1.14.0
Loading...
Searching...
No Matches
local_accessor.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023-2024 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Cowardly don't include <sycl/sycl.hpp> here, leave it up to the user to
10// do that. This way the vecmem::sycl library doesn't have to set up an
11// explicit public dependency on the SYCL headers.
12
13namespace vecmem::sycl {
14
15#if defined(VECMEM_HAVE_SYCL_LOCAL_ACCESSOR) && \
16 (defined(CL_SYCL_LANGUAGE_VERSION) || defined(SYCL_LANGUAGE_VERSION))
17
23template <typename T, int DIM = 1>
24using local_accessor = ::sycl::local_accessor<T, DIM>;
25
26#elif (defined(CL_SYCL_LANGUAGE_VERSION) || defined(SYCL_LANGUAGE_VERSION))
27
33template <typename T, int DIM = 1>
34using local_accessor =
35 ::sycl::accessor<T, DIM, ::sycl::access::mode::read_write,
36 ::sycl::access::target::local>;
37
38#endif // VECMEM_HAVE_SYCL_LOCAL_ACCESSOR
39
40} // namespace vecmem::sycl
Namespace holding types that work on/with oneAPI/SYCL.
Definition sycl_builtin_device_atomic_ref.hpp:17
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35