File: vecadd.c

package info (click to toggle)
pocl 6.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,320 kB
  • sloc: lisp: 149,513; ansic: 103,778; cpp: 54,947; python: 1,513; sh: 949; ruby: 255; pascal: 226; tcl: 180; makefile: 175; java: 72; xml: 49
file content (128 lines) | stat: -rw-r--r-- 3,784 bytes parent folder | download | duplicates (2)
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
/* vecadd - Simple vector addition using work-items.

   Copyright (c) 2018-2019 Pekka Jääskeläinen

   Permission is hereby granted, free of charge, to any person obtaining a copy
   of this software and associated documentation files (the "Software"), to deal
   in the Software without restriction, including without limitation the rights
   to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
   copies of the Software, and to permit persons to whom the Software is
   furnished to do so, subject to the following conditions:

   The above copyright notice and this permission notice shall be included in
   all copies or substantial portions of the Software.

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
   THE SOFTWARE.
*/

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

#include "poclu.h"

#define N 128

#ifdef __cplusplus
#  define CALLAPI "C"
#else
#  define CALLAPI
#endif

extern CALLAPI int
exec_vecadd_kernel (cl_context context, cl_device_id device,
                    cl_command_queue cmd_queue, cl_program program,
                    int n, int wg_size, cl_float *srcA, cl_float *srcB,
                    cl_float *dst);

int
main (int argc, char **argv)
{
  cl_float *srcA, *srcB;
  cl_float *dst;
  int i, err;

  cl_context context = NULL;
  cl_device_id device = NULL;
  cl_platform_id platform = NULL;
  cl_command_queue queue = NULL;
  cl_program program = NULL;

  err = poclu_get_any_device2 (&context, &device, &queue, &platform);
  CHECK_OPENCL_ERROR_IN ("clCreateContext");

  const char *basename = "vecadd";
  err = poclu_load_program (context, device, basename, 0, 0, NULL, NULL,
                            &program);
  if (err != CL_SUCCESS)
    goto FINISH;

  /* Allow the user to do multiple kernel launches in a row to stress
     the WG function caching mechanism. */
  int launches = 1;
  if (argc > 2)
    launches = (argc - 1) / 2;

  int l;
  for (l = 0; l < launches; ++l)
    {
      int vec_width = N;
      int wg_size = N;

      if (argc > l * 2 + 1)
        vec_width = atoi(argv[l * 2 + 1]);

      if (argc > l * 2 + 2)
        wg_size = atoi(argv[l * 2 + 2]);

      srcA = (cl_float *) malloc (vec_width * sizeof (cl_float));
      srcB = (cl_float *) malloc (vec_width * sizeof (cl_float));
      dst = (cl_float *) malloc (vec_width * sizeof (cl_float));

      for (i = 0; i < vec_width; ++i)
        {
          srcA[i] = (cl_float)i;
          srcB[i] = (cl_float)(vec_width - i);
          dst[i] = (cl_float)i;
        }

      err = 0;

      if (exec_vecadd_kernel (context, device, queue, program, vec_width,
                              wg_size, srcA, srcB, dst))
        {
          printf ("Error running the tests\n");
          err = 1;
          goto FINISH;
        }

      for (i = 0; i < vec_width; ++i)
        {
          if ((int)srcA[i] + (int)srcB[i] != (int)dst[i])
            {
              printf ("%d FAIL: %f + %f != %f\n", i, srcA[i], srcB[i], dst[i]);
              err = 1;
              goto FINISH;
            }
        }
      free (srcA);
      free (srcB);
      free (dst);
    }

  printf ("OK\n");

FINISH:
  CHECK_CL_ERROR (clReleaseProgram (program));
  CHECK_CL_ERROR (clReleaseCommandQueue (queue));
  CHECK_CL_ERROR (clReleaseContext (context));
  CHECK_CL_ERROR (clUnloadPlatformCompiler (platform));

  return err;
}