summaryrefslogtreecommitdiff
path: root/utests/compiler_write_only_bytes.cpp
blob: 1a13cdb45b54a81a339bf9031e6a85328920c087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "utest_helper.hpp"

void compiler_write_only_bytes(void)
{
  const size_t n = 32;

  // Setup kernel and buffers
  OCL_CREATE_KERNEL("compiler_write_only_bytes");
  OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(uint8_t), NULL);
  OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);

  // 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(((uint8_t*)buf_data[0])[i] == 2);
}

MAKE_UTEST_FROM_FUNCTION(compiler_write_only_bytes);