File: vecbuiltin.c

package info (click to toggle)
pocl 7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 29,768 kB
  • sloc: lisp: 151,669; ansic: 135,425; cpp: 65,801; python: 1,846; sh: 1,084; ruby: 255; pascal: 231; tcl: 180; makefile: 174; asm: 81; java: 72; xml: 49
file content (119 lines) | stat: -rw-r--r-- 4,010 bytes parent folder | download
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
/* vecbuiltin - simple invocation of a builtins on global buffer of values

   Copyright (c) 2025 Michal Babej / Intel Finland Oy

   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 <math.h>
#include <stdio.h>
#include <stdlib.h>

#include "poclu.h"

#define N 8192

extern int exec_vecbuiltin_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 = "vecbuiltin";
  err = poclu_load_program (platform, context, device, basename, 0, 0, NULL,
                            NULL, &program);
  if (err != CL_SUCCESS)
    goto FINISH;

  int l;
  int wg_size = 256;

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

  for (i = 0; i < N; ++i)
    {
      srcA[i] = (cl_float)i / (cl_float)N;
      srcB[i] = (cl_float)(N - i) / (cl_float)N;
      dst[i] = (cl_float)0.0f;
    }

  err = 0;

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

  for (i = 0; i < N; ++i)
    {
      float ref = sinf (srcA[i]) + cosf (srcB[i]) + log2f (125.0f + srcA[i])
                  + powf (srcA[i], 1.5f) + expf (srcA[i]) + exp2f (srcB[i])
                  + fabsf (srcA[i]) + fmaf (srcA[i], 4.0f, srcB[i])
                  + fmaxf (srcA[i], srcB[i]) + fminf (srcA[i], srcB[i])
                  + log10f (125.0f + srcA[i]) + log (125.0f + srcA[i])
                  + rintf (srcA[i]) + round (srcB[i]) + sqrtf (srcB[i])
                  + ceilf (srcB[i]) + tanf (srcA[i]) + powf (srcA[i], 4.0f)
                  + floorf (srcA[i]) + truncf (srcB[i]);
      if (fabsf (ref - dst[i]) > 1.0f)
        {
          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;
}