compute-runtime/opencl/test/unit_test/test_files/simple_arg_int.cl

12 lines
202 B
Common Lisp

/*
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
__kernel void SimpleArg(int src, __global int *dst) {
int id = (int)get_global_id(0);
dst[id] = src;
}