vecmem 1.14.0
Loading...
Searching...
No Matches
memory_resource.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7
8#pragma once
9
10// This header can only be used in C++17 mode. So "device compilers" that
11// can't use C++17, must not see it. Which in practically all cases should
12// "just" be a question of code organisation.
13#if __cplusplus < 201700L
14#error \
15 "This header can only be used in C++17 mode. " \
16 "Ideally it should only be used by the \"host compiler\"."
17#endif // < C++17
18
19/*
20 * The purpose of this file is to provide uniform access (on a source-code
21 * level) to the memory_resource type from the standard library. These are
22 * either in the std::pmr namespace or in the std::experimental::pmr namespace
23 * depending on the GCC version used, so we try to unify them by aliassing
24 * depending on the compiler feature flags.
25 */
26#if defined(VECMEM_HAVE_PMR_MEMORY_RESOURCE)
27#include <memory_resource>
28
29namespace vecmem {
30using memory_resource = std::pmr::memory_resource;
31}
32#elif defined(VECMEM_HAVE_EXPERIMENTAL_PMR_MEMORY_RESOURCE)
33#include <experimental/memory_resource>
34
35namespace vecmem {
36using memory_resource = std::experimental::pmr::memory_resource;
37}
38#else
39#error "C++17 LFTS V1 (P0220R1) component memory_resource not found!?!"
40#endif
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16