summaryrefslogtreecommitdiff
path: root/utests/compiler_function_argument.cpp
blob: a39523be94c38b9738b247154fb20fff6d164606 (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
#include "utest_helper.hpp"

void compiler_function_argument(void)
{
  const size_t n = 2048;
  const int value = 34;

  // Setup kernel and buffers
  OCL_CREATE_KERNEL("compiler_function_argument");
  OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(uint32_t), NULL);
  OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
  OCL_SET_ARG(1, sizeof(int), &value);

  // Run the kernel
  globals[0] = n;
  locals[0] = 16;
  OCL_NDRANGE(1);
  OCL_MAP_BUFFER(0);

  // Check results
  for (uint32_t i = 0; i < n; ++i)
    OCL_ASSERT(((int*)buf_data[0])[i] == value);
}

MAKE_UTEST_FROM_FUNCTION(compiler_function_argument);