-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtxn_bridge.h
237 lines (214 loc) · 6.03 KB
/
txn_bridge.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
//
// Created by Shujian Qian on 2023-09-20.
//
#ifndef TXN_BRIDGE_H
#define TXN_BRIDGE_H
#include <any>
#include <cstdint>
#include <cstdio>
#include "common.h"
#include "txn.h"
#include "util_device_type.h"
#include "util_gpu_transfer.h"
namespace epic {
struct TxnBridgeStorage
{
DeviceType src_type;
DeviceType dst_type;
size_t txn_size;
size_t num_txns;
uint8_t *src_ptr;
uint8_t *dest_ptr;
};
class TxnBridge
{
DeviceType src_type = DeviceType::CPU;
DeviceType dst_type = DeviceType::CPU;
size_t txn_size = 0;
size_t num_txns = 0;
void *src_ptr = nullptr;
void *dest_ptr = nullptr;
std::any copy_stream; /* used for GPU only */
public:
template<typename TxnType>
void Link(TxnArray<TxnType> &src, TxnArray<TxnType> &dest)
{
auto &logger = Logger::GetInstance();
if (src.num_txns != dest.num_txns)
{
logger.Error("TxnArray::num_txns mismatch");
}
src_type = src.device;
dst_type = dest.device;
txn_size = BaseTxnSize<TxnType>::value;
num_txns = src.num_txns;
if (src.txns == nullptr)
{
src.Initialize();
}
if (src.device == dest.device)
{
/* FIXME: add a relink function */
// if (dest.txns != nullptr)
// {
// dest.Destroy();
// }
dest.txns = src.txns;
}
else
{
if (dest.txns == nullptr)
{
dest.Initialize();
}
}
if (src.device == DeviceType::GPU || dest.device == DeviceType::GPU)
{
if (!copy_stream.has_value())
{
copy_stream = createGpuStream();
logger.Trace("Created a new stream for GPU copy with type {}", copy_stream.type().name());
}
}
src_ptr = src.txns;
dest_ptr = dest.txns;
}
~TxnBridge()
{
if (copy_stream.has_value())
{
destroyGpuStream(copy_stream);
}
}
virtual void StartTransfer();
virtual void FinishTransfer();
};
class PackedTxnBridge
{
DeviceType src_type = DeviceType::CPU;
DeviceType dst_type = DeviceType::CPU;
size_t txn_size = 0;
size_t num_txns = 0;
uint32_t packed_size = 0;
void *src_ptr = nullptr;
void *src_index_ptr = nullptr;
void *dest_ptr = nullptr;
void *dest_index_ptr = nullptr;
uint32_t *src_size_ptr = nullptr;
uint32_t *dest_size_ptr = nullptr;
std::any copy_stream; /* used for GPU only */
public:
template<typename TxnType>
void Link(PackedTxnArray<TxnType> &src, PackedTxnArray<TxnType> &dest)
{
auto &logger = Logger::GetInstance();
if (src.num_txns != dest.num_txns)
{
throw std::runtime_error("TxnArray::num_txns mismatch");
}
src_type = src.device;
dst_type = dest.device;
txn_size = BaseTxnSize<TxnType>::value;
num_txns = src.num_txns;
if (src.txns == nullptr)
{
src.Initialize();
}
if (src.device == dest.device)
{
/* FIXME: add a relink function */
// if (dest.txns != nullptr)
// {
// dest.Destroy();
// }
dest.txns = src.txns;
dest.index = src.index;
}
else
{
if (dest.txns == nullptr)
{
dest.Initialize();
}
}
if (src.device == DeviceType::GPU || dest.device == DeviceType::GPU)
{
if (!copy_stream.has_value())
{
copy_stream = createGpuStream();
logger.Trace("Created a new stream for GPU copy with type {}", copy_stream.type().name());
}
}
src_ptr = src.txns;
dest_ptr = dest.txns;
src_index_ptr = src.index;
dest_index_ptr = dest.index;
src_size_ptr = &src.size;
dest_size_ptr = &dest.size;
}
virtual ~PackedTxnBridge()
{
if (copy_stream.has_value())
{
destroyGpuStream(copy_stream);
}
}
virtual void StartTransfer()
{
auto &logger = Logger::GetInstance();
if (src_type == DeviceType::CPU && dst_type == DeviceType::CPU)
{
return;
}
#ifdef EPIC_CUDA_AVAILABLE
else if (src_type == DeviceType::GPU && dst_type == DeviceType::GPU)
{
return;
}
else if (src_type == DeviceType::GPU)
{
transferGpuToCpu(&packed_size, &static_cast<uint32_t *>(src_index_ptr)[num_txns], sizeof(uint32_t));
transferGpuToCpu(dest_ptr, src_ptr, packed_size, copy_stream);
transferGpuToCpu(dest_index_ptr, src_index_ptr, num_txns * sizeof(uint32_t), copy_stream);
*src_size_ptr = packed_size;
*dest_size_ptr = packed_size;
logger.Info("Transferred {} bytes from GPU to CPU", packed_size);
}
else if (dst_type == DeviceType::GPU)
{
packed_size = *src_size_ptr;
transferCpuToGpu(dest_ptr, src_ptr, packed_size, copy_stream);
transferCpuToGpu(dest_index_ptr, src_index_ptr, num_txns * sizeof(uint32_t), copy_stream);
*dest_size_ptr = packed_size;
}
#endif
else
{
logger.Error("Unsupported transfer using TxnBridge");
}
}
virtual void FinishTransfer()
{
if (src_type == DeviceType::CPU && dst_type == DeviceType::CPU)
{
return;
}
#ifdef EPIC_CUDA_AVAILABLE
else if (src_type == DeviceType::GPU && dst_type == DeviceType::GPU)
{
return;
}
else if (src_type == DeviceType::GPU || dst_type == DeviceType::GPU)
{
syncGpuStream(copy_stream);
}
#endif
else
{
auto &logger = Logger::GetInstance();
logger.Error("Unsupported transfer using TxnBridge");
}
}
};
} // namespace epic
#endif // TXN_BRIDGE_H