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

11 lines
199 B
Common Lisp

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
__kernel void statelessKernel(__global uchar* src) {
uint tid = get_global_id(0);
src[tid] = 0xCD;
}