-
Notifications
You must be signed in to change notification settings - Fork 0
/
kernel_calls.cu
472 lines (378 loc) · 24.3 KB
/
kernel_calls.cu
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
#include "kernel_calls.cuh"
namespace kernel_calls
{
void processDataWithCuda(
const char* data
, const size_t data_length
, const char* keywords
, int* histogram
, float* compute_time
, float* total_time)
{
char* dev_data{};
char* dev_keywords{};
int* dev_histogram{};
cudaError_t cudaStatus;
cudaEvent_t start;
cudaEvent_t start_c;
cudaEvent_t end;
cudaEvent_t end_c;
try {
// Choose which GPU to run on, change this on a multi-GPU system.
cudaStatus = cudaSetDevice(0);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaSetDevice failed! Do you have a CUDA-capable GPU installed?");
cudaStatus = cudaEventCreate(&start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventRecord(start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Allocate GPU buffers for three vectors (two input, one output)
cudaStatus = cudaMalloc((void**)&dev_data, data_length * general::word_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMalloc((void**)&dev_keywords, general::keywords_length * general::word_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMalloc((void**)&dev_histogram, general::keywords_length * sizeof(int));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
// Copy input vectors from host memory to GPU buffers.
cudaStatus = cudaMemcpy(dev_data, data, data_length * general::word_size * sizeof(char), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaMemcpy(dev_keywords, keywords, general::keywords_length * general::word_size * sizeof(char), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaMemcpy(dev_histogram, histogram, general::keywords_length * sizeof(int), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Launch a kernel on the GPU with one thread for each element.
kernels::countWords << <grid_size, block_size >> > (dev_data, data_length, dev_keywords, dev_histogram);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaDeviceSynchronize();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
cudaStatus = cudaEventRecord(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Copy output vector from GPU buffer to host memory.
cudaStatus = cudaMemcpy(histogram, dev_histogram, general::keywords_length * sizeof(int), cudaMemcpyDeviceToHost);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(total_time, start, end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(compute_time, start_c, end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaFree(dev_data);
cudaFree(dev_keywords);
cudaFree(dev_histogram);
}
catch (std::runtime_error& e) {
cudaFree(dev_data);
cudaFree(dev_keywords);
cudaFree(dev_histogram);
throw std::runtime_error(e);
}
}
void processDataWithCudaPreprocess(
const char* data
, const size_t data_length
, const char* keywords
, int* histogram
, float* compute_time
, float* total_time)
{
char* dev_data{};
char* dev_keywords{};
int* dev_histogram{};
cudaError_t cudaStatus;
cudaEvent_t start;
cudaEvent_t start_c;
cudaEvent_t end;
cudaEvent_t end_c;
try {
// Choose which GPU to run on, change this on a multi-GPU system.
cudaStatus = cudaSetDevice(0);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaSetDevice failed! Do you have a CUDA-capable GPU installed?");
cudaStatus = cudaEventCreate(&start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventRecord(start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Allocate GPU buffers for three vectors (two input, one output)
cudaStatus = cudaMalloc((void**)&dev_data, data_length * general::word_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMalloc((void**)&dev_keywords, general::keywords_length * general::word_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMalloc((void**)&dev_histogram, general::keywords_length * sizeof(int));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
// Copy input vectors from host memory to GPU buffers.
cudaStatus = cudaMemcpy(dev_data, data, data_length * general::word_size * sizeof(char), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaMemcpy(dev_keywords, keywords, general::keywords_length * general::word_size * sizeof(char), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaMemcpy(dev_histogram, histogram, general::keywords_length * sizeof(int), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Preprocess data
// Launch lowercasing kernel on data
kernels::lowerData << <grid_size, block_size >> > (dev_data, data_length);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaDeviceSynchronize();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
// Remove exessive punctuation marks and clear data
kernels::removeExcessives << <grid_size, block_size >> > (dev_data, data_length);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaDeviceSynchronize();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
// Process data
kernels::countWords << <grid_size, block_size >> > (dev_data, data_length, dev_keywords, dev_histogram);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaDeviceSynchronize();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
cudaStatus = cudaEventRecord(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Copy output vector from GPU buffer to host memory.
cudaStatus = cudaMemcpy(histogram, dev_histogram, general::keywords_length * sizeof(int), cudaMemcpyDeviceToHost);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(total_time, start, end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(compute_time, start_c, end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaFree(dev_data);
cudaFree(dev_keywords);
cudaFree(dev_histogram);
}
catch (std::runtime_error& e) {
cudaFree(dev_data);
cudaFree(dev_keywords);
cudaFree(dev_histogram);
throw std::runtime_error(e);
}
}
void processDataWithCudaStreamsPreprocess(
const char* data
, const size_t data_length
, const char* keywords
, int* histogram
, float* compute_time
, float* total_time)
{
char* host_data[n_streams]{};
char* dev_data[n_streams]{};
char* dev_keywords{};
int* dev_histogram{};
cudaError_t cudaStatus;
cudaEvent_t start;
cudaEvent_t start_c;
cudaEvent_t end;
cudaEvent_t end_c;
cudaStream_t streams[n_streams];
size_t stream_size{ data_length * general::word_size / n_streams };
try {
// Choose which GPU to run on, change this on a multi-GPU system.
cudaStatus = cudaSetDevice(0);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaSetDevice failed! Do you have a CUDA-capable GPU installed?");
cudaStatus = cudaEventCreate(&start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventCreate(&end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventRecord(start);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaMalloc((void**)&dev_keywords, general::keywords_length * general::word_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMalloc((void**)&dev_histogram, general::keywords_length * sizeof(int));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMalloc failed!");
cudaStatus = cudaMemcpy(dev_keywords, keywords, general::keywords_length * general::word_size * sizeof(char), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaMemcpy(dev_histogram, histogram, general::keywords_length * sizeof(int), cudaMemcpyHostToDevice);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(start_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record start_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Create and setup streams
for (int i{}; i < n_streams; ++i) {
cudaStatus = cudaStreamCreate(&streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to create stream (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaMallocHost((void**)&host_data[i], stream_size * sizeof(char));
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to host-allocate data (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaMemcpyAsync(host_data[i], &data[i * stream_size], stream_size * sizeof(char), cudaMemcpyHostToHost, streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to memcpy-async data (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaMallocAsync((void**)&dev_data[i], stream_size * sizeof(char), streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to device-allocate data (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaMemcpyAsync(dev_data[i], host_data[i], stream_size * sizeof(char), cudaMemcpyHostToDevice, streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to memcpy-async data (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Preprocess data
// Launch lowercasing kernel on data
kernels::lowerData << <grid_size / n_streams, block_size, 0, streams[i] >> > (dev_data[i], data_length / n_streams);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaStreamSynchronize(streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
// Remove exessive punctuation marks and clear data
kernels::removeExcessives << <grid_size / n_streams, block_size, 0, streams[i] >> > (dev_data[i], data_length / n_streams);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaStreamSynchronize(streams[i]);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
// Process data
kernels::countWords << <grid_size / n_streams, block_size, general::keywords_length * (general::word_size + 1), streams[i] >> > (dev_data[i], data_length / n_streams, dev_keywords, dev_histogram);
// Check for any errors launching the kernel
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Kernel launch failed: " + std::string(cudaGetErrorString(cudaStatus)));
}
// cudaDeviceSynchronize waits for the kernel to finish, and returns
// any errors encountered during the launch.
cudaStatus = cudaDeviceSynchronize();
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaDeviceSynchronize returned error code " + std::to_string(cudaStatus) + "after launching addKernel!" + cudaGetErrorString(cudaStatus));
cudaStatus = cudaEventRecord(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
// Copy output vector from GPU buffer to host memory.
cudaStatus = cudaMemcpy(histogram, dev_histogram, general::keywords_length * sizeof(int), cudaMemcpyDeviceToHost);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("cudaMemcpy failed!");
cudaStatus = cudaEventRecord(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to record end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end_c event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventSynchronize(end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to sync end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(total_time, start, end);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaStatus = cudaEventElapsedTime(compute_time, start_c, end_c);
if (cudaStatus != cudaSuccess)
throw std::runtime_error("Failed to take elapsed end event (error code: " + std::string(cudaGetErrorString(cudaStatus)) + ")!");
cudaFree(dev_keywords);
cudaFree(dev_histogram);
for (int i{}; i < n_streams; ++i) {
cudaFree(host_data[i]);
cudaFree(dev_data[i]);
}
}
catch (std::runtime_error& e) {
cudaFree(dev_keywords);
cudaFree(dev_histogram);
for (int i{}; i < n_streams; ++i) {
cudaFree(host_data[i]);
cudaFree(dev_data[i]);
}
throw std::runtime_error(e);
}
}
}