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
|
/*
* JGL@SAFARI
*/
/**
* CPU code with Thrust
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include <assert.h>
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <math.h>
#include <sys/time.h>
#include <vector>
#include <thrust/device_vector.h>
#include <thrust/host_vector.h>
#include <thrust/scan.h>
#include <thrust/copy.h>
#include <thrust/system/omp/execution_policy.h>
#include <thrust/system/omp/vector.h>
#include <omp.h>
#include "../../support/common.h"
#include "../../support/timer.h"
#define XSTR(x) STR(x)
#define STR(x) #x
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_RESET "\x1b[0m"
// Pointer declaration
static T* A;
static T* C;
static T* C2;
/**
* @brief creates input arrays
* @param nr_elements how many elements in input arrays
*/
static void read_input(T* A, unsigned int nr_elements) {
//srand(0);
printf("nr_elements\t%u\t", nr_elements);
for (unsigned int i = 0; i < nr_elements; i++) {
//A[i] = (T) (rand()) % 2;
A[i] = i;
}
}
/**
* @brief compute output in the host
*/
static void scan_host(T* C, T* A, unsigned int nr_elements) {
C[0] = A[0];
for (unsigned int i = 1; i < nr_elements; i++) {
C[i] = C[i - 1] + A[i - 1];
}
}
// Params ---------------------------------------------------------------------
typedef struct Params {
unsigned int input_size;
int n_warmup;
int n_reps;
int n_threads;
int exp;
}Params;
void usage() {
fprintf(stderr,
"\nUsage: ./program [options]"
"\n"
"\nGeneral options:"
"\n -h help"
"\n -w <W> # of untimed warmup iterations (default=1)"
"\n -e <E> # of timed repetition iterations (default=3)"
"\n -x <X> Weak (0) or strong (1) scaling (default=0)"
"\n -t <T> # of threads (default=8)"
"\n"
"\nBenchmark-specific options:"
"\n -i <I> input size (default=8M elements)"
"\n");
}
struct Params input_params(int argc, char **argv) {
struct Params p;
p.input_size = 2 << 20;
p.n_warmup = 1;
p.n_reps = 3;
p.exp = 0;
p.n_threads = 8;
int opt;
while((opt = getopt(argc, argv, "hi:w:e:x:t:")) >= 0) {
switch(opt) {
case 'h':
usage();
exit(0);
break;
case 'i': p.input_size = atoi(optarg); break;
case 'w': p.n_warmup = atoi(optarg); break;
case 'e': p.n_reps = atoi(optarg); break;
case 'x': p.exp = atoi(optarg); break;
case 't': p.n_threads = atoi(optarg); break;
default:
fprintf(stderr, "\nUnrecognized option!\n");
usage();
exit(0);
}
}
assert(p.n_threads > 0 && "Invalid # of threads!");
return p;
}
/**
* @brief Main of the Host Application.
*/
int main(int argc, char **argv) {
struct Params p = input_params(argc, argv);
unsigned int nr_of_dpus = 1;
unsigned int i = 0;
const unsigned int input_size = p.exp == 0 ? p.input_size * p.n_threads : p.input_size;
assert(input_size % (p.n_threads) == 0 && "Input size!");
// Input/output allocation
A = (T*)malloc(input_size * sizeof(T));
C = (T*)malloc(input_size * sizeof(T));
T *bufferA = A;
// Create an input file with arbitrary data.
read_input(A, input_size);
// Timer declaration
Timer timer;
float time_gpu = 0;
thrust::omp::vector<T> h_output(input_size);
// Loop over main kernel
for(int rep = 0; rep < p.n_warmup + p.n_reps; rep++) {
// Compute output on CPU (performance comparison and verification purposes)
if(rep >= p.n_warmup)
start(&timer, 0, 0);
scan_host(C, A, input_size);
if(rep >= p.n_warmup)
stop(&timer, 0);
memcpy(thrust::raw_pointer_cast(&h_output[0]), A, input_size * sizeof(T));
omp_set_num_threads(p.n_threads);
unsigned int nr_threads = 0;
#pragma omp parallel
#pragma omp atomic
nr_threads++;
if(rep >= p.n_warmup)
start(&timer, 1, 0);
thrust::exclusive_scan(thrust::omp::par, h_output.begin(),h_output.end(),h_output.begin());
if(rep >= p.n_warmup)
stop(&timer, 1);
// Check output
bool status = true;
for (i = 0; i < input_size; i++) {
if(C[i] != h_output[i]){
status = false;
//printf("%d: %lu -- %lu\n", i, C[i], h_output[i]);
}
}
if (status) {
printf("[" ANSI_COLOR_GREEN "OK" ANSI_COLOR_RESET "] Outputs are equal\n");
if(rep >= p.n_warmup) {
printf("[::] SCAN-RSS CPU | n_threads=%d e_type=%s n_elements=%d "
"| throughput_cpu_ref_MBps=%f throughput_cpu_thrust_MBps=%f",
nr_threads, XSTR(T), input_size,
input_size * sizeof(T) / timer.time[0],
input_size * sizeof(T) / timer.time[1]);
printf(" throughput_cpu_ref_MOpps=%f throughput_cpu_thrust_MOpps=%f",
input_size / timer.time[0],
input_size / timer.time[1]);
printall(&timer, 1);
}
} else {
printf("[" ANSI_COLOR_RED "ERROR" ANSI_COLOR_RESET "] Outputs differ!\n");
}
}
// Print timing results
//printf("CPU ");
//print(&timer, 0, p.n_reps);
//printf("Kernel ");
//print(&timer, 1, p.n_reps);
// Deallocation
free(A);
free(C);
return 0;
}
|