forked from cms-patatrack/pixeltrack-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost_noncached_unique_ptr.h
74 lines (64 loc) · 2.8 KB
/
host_noncached_unique_ptr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef HeterogeneousCore_CUDAUtilities_interface_host_noncached_unique_ptr_h
#define HeterogeneousCore_CUDAUtilities_interface_host_noncached_unique_ptr_h
#include <memory>
#include <cuda_runtime.h>
#include "CUDACore/cudaCheck.h"
namespace cms {
namespace cuda {
namespace host {
namespace noncached {
namespace impl {
// Additional layer of types to distinguish from host::unique_ptr
class HostDeleter {
public:
void operator()(void *ptr) { cudaCheck(cudaFreeHost(ptr)); }
};
} // namespace impl
template <typename T>
using unique_ptr = std::unique_ptr<T, impl::HostDeleter>;
namespace impl {
template <typename T>
struct make_host_unique_selector {
using non_array = cms::cuda::host::noncached::unique_ptr<T>;
};
template <typename T>
struct make_host_unique_selector<T[]> {
using unbounded_array = cms::cuda::host::noncached::unique_ptr<T[]>;
};
template <typename T, size_t N>
struct make_host_unique_selector<T[N]> {
struct bounded_array {};
};
} // namespace impl
} // namespace noncached
} // namespace host
/**
* The difference wrt. make_host_unique is that these
* do not cache, so they should not be called per-event.
*/
template <typename T>
typename host::noncached::impl::make_host_unique_selector<T>::non_array make_host_noncached_unique(
unsigned int flags = cudaHostAllocDefault) {
static_assert(std::is_trivially_constructible<T>::value,
"Allocating with non-trivial constructor on the pinned host memory is not supported");
void *mem;
cudaCheck(cudaHostAlloc(&mem, sizeof(T), flags));
return typename host::noncached::impl::make_host_unique_selector<T>::non_array(reinterpret_cast<T *>(mem));
}
template <typename T>
typename host::noncached::impl::make_host_unique_selector<T>::unbounded_array make_host_noncached_unique(
size_t n, unsigned int flags = cudaHostAllocDefault) {
using element_type = typename std::remove_extent<T>::type;
static_assert(std::is_trivially_constructible<element_type>::value,
"Allocating with non-trivial constructor on the pinned host memory is not supported");
void *mem;
cudaCheck(cudaHostAlloc(&mem, n * sizeof(element_type), flags));
return typename host::noncached::impl::make_host_unique_selector<T>::unbounded_array(
reinterpret_cast<element_type *>(mem));
}
template <typename T, typename... Args>
typename host::noncached::impl::make_host_unique_selector<T>::bounded_array make_host_noncached_unique(Args &&...) =
delete;
} // namespace cuda
} // namespace cms
#endif