forked from cms-patatrack/pixeltrack-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice_unique_ptr.h
104 lines (89 loc) · 4.33 KB
/
device_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#ifndef HeterogeneousCore_CUDAUtilities_interface_device_unique_ptr_h
#define HeterogeneousCore_CUDAUtilities_interface_device_unique_ptr_h
#include <functional>
#include <memory>
#include <cuda_runtime.h>
#include "CUDACore/allocate_device.h"
#include "CUDACore/currentDevice.h"
namespace cms {
namespace cuda {
namespace device {
namespace impl {
// Additional layer of types to distinguish from host::unique_ptr
class DeviceDeleter {
public:
DeviceDeleter() = default; // for edm::Wrapper
DeviceDeleter(int device, cudaStream_t stream) : device_{device}, stream_{stream} {}
void operator()(void *ptr) {
if (device_ >= 0) {
free_device(device_, ptr, stream_);
}
}
private:
int device_ = -1;
cudaStream_t stream_ = cudaStreamDefault;
};
} // namespace impl
template <typename T>
using unique_ptr = std::unique_ptr<T, impl::DeviceDeleter>;
namespace impl {
template <typename T>
struct make_device_unique_selector {
using non_array = cms::cuda::device::unique_ptr<T>;
};
template <typename T>
struct make_device_unique_selector<T[]> {
using unbounded_array = cms::cuda::device::unique_ptr<T[]>;
};
template <typename T, size_t N>
struct make_device_unique_selector<T[N]> {
struct bounded_array {};
};
} // namespace impl
} // namespace device
template <typename T>
typename device::impl::make_device_unique_selector<T>::non_array make_device_unique(cudaStream_t stream) {
static_assert(std::is_trivially_constructible<T>::value,
"Allocating with non-trivial constructor on the device memory is not supported");
int dev = currentDevice();
void *mem = allocate_device(dev, sizeof(T), stream);
return typename device::impl::make_device_unique_selector<T>::non_array{reinterpret_cast<T *>(mem),
device::impl::DeviceDeleter{dev, stream}};
}
template <typename T>
typename device::impl::make_device_unique_selector<T>::unbounded_array make_device_unique(size_t n,
cudaStream_t stream) {
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 device memory is not supported");
int dev = currentDevice();
void *mem = allocate_device(dev, n * sizeof(element_type), stream);
return typename device::impl::make_device_unique_selector<T>::unbounded_array{
reinterpret_cast<element_type *>(mem), device::impl::DeviceDeleter{dev, stream}};
}
template <typename T, typename... Args>
typename device::impl::make_device_unique_selector<T>::bounded_array make_device_unique(Args &&...) = delete;
// No check for the trivial constructor, make it clear in the interface
template <typename T>
typename device::impl::make_device_unique_selector<T>::non_array make_device_unique_uninitialized(
cudaStream_t stream) {
int dev = currentDevice();
void *mem = allocate_device(dev, sizeof(T), stream);
return typename device::impl::make_device_unique_selector<T>::non_array{reinterpret_cast<T *>(mem),
device::impl::DeviceDeleter{dev, stream}};
}
template <typename T>
typename device::impl::make_device_unique_selector<T>::unbounded_array make_device_unique_uninitialized(
size_t n, cudaStream_t stream) {
using element_type = typename std::remove_extent<T>::type;
int dev = currentDevice();
void *mem = allocate_device(dev, n * sizeof(element_type), stream);
return typename device::impl::make_device_unique_selector<T>::unbounded_array{
reinterpret_cast<element_type *>(mem), device::impl::DeviceDeleter{dev, stream}};
}
template <typename T, typename... Args>
typename device::impl::make_device_unique_selector<T>::bounded_array make_device_unique_uninitialized(Args &&...) =
delete;
} // namespace cuda
} // namespace cms
#endif