vecmem 1.14.0
Loading...
Searching...
No Matches
hip_device_atomic_ref.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2022-2024 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// HIP include(s).
11#include <hip/hip_runtime.h>
12
13// Set up __VECMEM_THREADFENCE correctly for the vecmem::hip::device_atomic_ref
14// code.
15#ifdef __HIP_DEVICE_COMPILE__
16#define __VECMEM_THREADFENCE __threadfence()
17#else
18#define __VECMEM_THREADFENCE
19#endif // defined(__HIP_DEVICE_COMPILE__)
20
21// Local include(s).
22#include "vecmem/memory/details/cuda_device_atomic_ref.hpp"
23
24namespace vecmem {
25namespace hip {
26
28template <typename T,
29 device_address_space address = device_address_space::global>
31
32} // namespace hip
33} // namespace vecmem
Custom implementation for atomic operations in CUDA device code.
Definition cuda_device_atomic_ref.hpp:34
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
device_address_space
Custom definition for the device memory adress space.
Definition device_address_space.hpp:12
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35