blob: b54432ef7300c2d74d352b7f3013e6f74838af5e (
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
|
#include "utest_helper.hpp"
struct hop { int a, x[16]; };
void compiler_argument_structure_indirect(void)
{
const size_t n = 2048;
hop h;
// Setup kernel and buffers
OCL_CREATE_KERNEL("compiler_argument_structure_indirect");
OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(uint32_t), NULL);
OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
for (int i = 0; i < 16; ++i) h.x[i] = i;
OCL_SET_ARG(1, sizeof(hop), &h);
// 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(((uint32_t*)buf_data[0])[i] == (i%16));
}
}
MAKE_UTEST_FROM_FUNCTION(compiler_argument_structure_indirect);
|