summaryrefslogtreecommitdiff
path: root/benchmark/benchmark_workgroup.cpp
blob: 3f073bb43ccda80f0eb4ba7957d2c5b51e9fcbf1 (plain)
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
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include "utest_helper.hpp"
#include <sys/time.h>
#include <iomanip>
#include <algorithm>

using namespace std;

/* work-group general settings */
#define WG_GLOBAL_SIZE          (512 * 256)
#define WG_LOCAL_SIZE           128
#define WG_LOOP_COUNT           1000

/* work-group broadcast only */
#define WG_GLOBAL_SIZE_X        1024
#define WG_GLOBAL_SIZE_Y        1024

#define WG_LOCAL_SIZE_X         32
#define WG_LOCAL_SIZE_Y         2

#define WG_LOCAL_X    5
#define WG_LOCAL_Y    0


enum WG_FUNCTION
{
  WG_BROADCAST_1D,
  WG_BROADCAST_2D,
  WG_REDUCE_ADD,
  WG_REDUCE_MIN,
  WG_REDUCE_MAX,
  WG_SCAN_EXCLUSIVE_ADD,
  WG_SCAN_EXCLUSIVE_MAX,
  WG_SCAN_EXCLUSIVE_MIN,
  WG_SCAN_INCLUSIVE_ADD,
  WG_SCAN_INCLUSIVE_MAX,
  WG_SCAN_INCLUSIVE_MIN
};

/*
 * Generic compute-expected on CPU function for any workgroup type
 * and any variable type
 */
template<class T>
static void benchmark_expected(WG_FUNCTION wg_func,
                    T* input,
                    T* expected,
                    uint32_t wg_global_size,
                    uint32_t wg_local_size)
{
  if(wg_func == WG_BROADCAST_1D)
  {
    for(uint32_t i = 0; i < wg_local_size; i++)
      expected[i] = input[WG_LOCAL_X];
  }
  else if(wg_func == WG_BROADCAST_2D)
  {
    for(uint32_t i = 0; i < wg_local_size; i++)
      expected[i] =
          input[WG_LOCAL_X +
                WG_LOCAL_Y * WG_LOCAL_SIZE_X];
  }
  else if(wg_func == WG_REDUCE_ADD)
  {
    T wg_sum = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      wg_sum += input[i];
    for(uint32_t i = 0; i < wg_local_size; i++)
      expected[i] = wg_sum;
  }
  else if(wg_func == WG_REDUCE_MAX)
  {
    T wg_max = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      wg_max = max(input[i], wg_max);
    for(uint32_t i = 0; i < wg_local_size; i++)
      expected[i] = wg_max;
  }
  else if(wg_func == WG_REDUCE_MIN)
  {
    T wg_min = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      wg_min = min(input[i], wg_min);
    for(uint32_t i = 0; i < wg_local_size; i++)
      expected[i] = wg_min;
  }
  else if(wg_func == WG_SCAN_INCLUSIVE_ADD)
  {
    expected[0] = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      expected[i] = input[i] + expected[i - 1];
  }
  else if(wg_func == WG_SCAN_INCLUSIVE_MAX)
  {
    expected[0] = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      expected[i] = max(input[i], expected[i - 1]);
  }
  else if(wg_func == WG_SCAN_INCLUSIVE_MIN)
  {
    expected[0] = input[0];
    for(uint32_t i = 1; i < wg_local_size; i++)
      expected[i] = min(input[i], expected[i - 1]);
  }
}

/*
 * Generic input-expected generate function for any workgroup type
 * and any variable type
 */
template<class T>
static void benchmark_data(WG_FUNCTION wg_func,
                   T* &input,
                   T* &expected,
                   uint32_t &wg_global_size,
                   uint32_t &wg_local_size)
{
  if(wg_func == WG_BROADCAST_1D)
  {
    wg_global_size = WG_GLOBAL_SIZE_X;
    wg_local_size = WG_LOCAL_SIZE_X;
  }
  else if(wg_func == WG_BROADCAST_2D)
  {
    wg_global_size = WG_GLOBAL_SIZE_X * WG_GLOBAL_SIZE_Y;
    wg_local_size = WG_LOCAL_SIZE_X * WG_LOCAL_SIZE_Y;
  }
  else
  {
    wg_global_size = WG_GLOBAL_SIZE;
    wg_local_size = WG_LOCAL_SIZE;
  }

  input = new T[wg_global_size];
  expected = new T[wg_global_size];

  /* seed for random inputs */
  srand (time(NULL));

  /* generate inputs and expected values */
  for(uint32_t gid = 0; gid < wg_global_size; gid += wg_local_size)
  {
    /* input values */
    for(uint32_t lid = 0; lid < wg_local_size; lid++)
      input[gid + lid] = (rand() % 512) / 3.1415f;

    /* expected values */
    benchmark_expected(wg_func, input + gid, expected + gid,
                       wg_global_size, wg_local_size);
  }
}

/*
 * Generic benchmark function for any workgroup type
 * and any variable type
 */
template<class T>
static double benchmark_generic(WG_FUNCTION wg_func,
                       T* input,
                       T* expected)
{
  double elapsed = 0;
  const uint32_t reduce_loop = WG_LOOP_COUNT;
  struct timeval start,stop;

  uint32_t wg_global_size = 0;
  uint32_t wg_local_size = 0;

  /* input and expected data */
  benchmark_data(wg_func, input, expected, wg_global_size, wg_local_size);

  /* prepare input for datatype */
  OCL_CREATE_BUFFER(buf[0], 0, wg_global_size * sizeof(T), NULL);
  OCL_CREATE_BUFFER(buf[1], 0, wg_global_size * sizeof(T), NULL);
  OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
  OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
  OCL_SET_ARG(2, sizeof(cl_uint), &reduce_loop);

  if(wg_func == WG_BROADCAST_1D ||
      wg_func == WG_BROADCAST_2D)
  {
    cl_uint wg_local_x = WG_LOCAL_X;
    cl_uint wg_local_y = WG_LOCAL_Y;
    OCL_SET_ARG(3, sizeof(cl_uint), &wg_local_x);
    OCL_SET_ARG(4, sizeof(cl_uint), &wg_local_y);
  }

  /* set input data for GPU */
  OCL_MAP_BUFFER(0);
  memcpy(buf_data[0], input, wg_global_size * sizeof(T));
  OCL_UNMAP_BUFFER(0);

  /* run the kernel on GPU */
  gettimeofday(&start,0);

  if(wg_func == WG_BROADCAST_1D)
  {
    globals[0] = WG_GLOBAL_SIZE_X;
    locals[0] = WG_LOCAL_SIZE_X;
    OCL_NDRANGE(1);
  }
  else if(wg_func == WG_BROADCAST_2D)
  {
    globals[0] = WG_GLOBAL_SIZE_X;
    locals[0] = WG_LOCAL_SIZE_X;
    globals[1] = WG_GLOBAL_SIZE_Y;
    locals[1] = WG_LOCAL_SIZE_Y;
    OCL_NDRANGE(2);
  }
  else
  { /* reduce, scan inclulsive, scan exclusive */
    globals[0] = WG_GLOBAL_SIZE;
    locals[0] = WG_LOCAL_SIZE;
    OCL_NDRANGE(1);
  }

  clFinish(queue);
  gettimeofday(&stop,0);
  elapsed = time_subtract(&stop, &start, 0);

  /* check if mistmatch, display execution time */
  OCL_MAP_BUFFER(1);
  uint32_t mistmatches = 0;
  for (uint32_t i = 0; i < wg_global_size; i++)
    if(((T *)buf_data[1])[i] != *(expected + i)){
      /* uncomment bellow for DEBUG */
      /* cout << "Err at " << i << ", " <<
        ((T *)buf_data[1])[i] << " != " << *(expected + i) << endl; */
      mistmatches++;
    }
  cout << endl << endl << "Mistmatches " << mistmatches << endl;
  cout << "Exec time " << elapsed << endl << endl;
  OCL_UNMAP_BUFFER(1);

  return BANDWIDTH(sizeof(T) * wg_global_size * reduce_loop, elapsed);
}

/*
 * Benchmark workgroup broadcast
 */
double benchmark_workgroup_broadcast_1D_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_broadcast_1D_int");
  return benchmark_generic(WG_BROADCAST_1D, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_broadcast_1D_int, "GB/S");
double benchmark_workgroup_broadcast_1D_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_broadcast_1D_long");
  return benchmark_generic(WG_BROADCAST_1D, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_broadcast_1D_long, "GB/S");
double benchmark_workgroup_broadcast_2D_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_broadcast_2D_int");
  return benchmark_generic(WG_BROADCAST_2D, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_broadcast_2D_int, "GB/S");
double benchmark_workgroup_broadcast_2D_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_broadcast_2D_long");
  return benchmark_generic(WG_BROADCAST_2D, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_broadcast_2D_long, "GB/S");

/*
 * Benchmark workgroup reduce add
 */
double benchmark_workgroup_reduce_add_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_reduce_add_int");
  return benchmark_generic(WG_REDUCE_ADD, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_reduce_add_int, "GB/S");
double benchmark_workgroup_reduce_add_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_reduce_add_long");
  return benchmark_generic(WG_REDUCE_ADD, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_reduce_add_long, "GB/S");

/*
 * Benchmark workgroup reduce min
 */
double benchmark_workgroup_reduce_min_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_reduce_min_int");
  return benchmark_generic(WG_REDUCE_MIN, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_reduce_min_int, "GB/S");
double benchmark_workgroup_reduce_min_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_reduce_min_long");
  return benchmark_generic(WG_REDUCE_MIN, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_reduce_min_long, "GB/S");

/*
 * Benchmark workgroup scan inclusive add
 */
double benchmark_workgroup_scan_inclusive_add_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_scan_inclusive_add_int");
  return benchmark_generic(WG_SCAN_INCLUSIVE_ADD, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_scan_inclusive_add_int, "GB/S");
double benchmark_workgroup_scan_inclusive_add_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_scan_inclusive_add_long");
  return benchmark_generic(WG_SCAN_INCLUSIVE_ADD, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_scan_inclusive_add_long, "GB/S");

/*
 * Benchmark workgroup scan inclusive min
 */
double benchmark_workgroup_scan_inclusive_min_int(void)
{
  cl_int *input = NULL;
  cl_int *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_scan_inclusive_min_int");
  return benchmark_generic(WG_SCAN_INCLUSIVE_MIN, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_scan_inclusive_min_int, "GB/S");
double benchmark_workgroup_scan_inclusive_min_long(void)
{
  cl_long *input = NULL;
  cl_long *expected = NULL;
  OCL_CREATE_KERNEL_FROM_FILE("bench_workgroup",
                  "bench_workgroup_scan_inclusive_min_long");
  return benchmark_generic(WG_SCAN_INCLUSIVE_MIN, input, expected);
}
MAKE_BENCHMARK_FROM_FUNCTION(benchmark_workgroup_scan_inclusive_min_long, "GB/S");