compute-runtime/unit_tests/test_files/stateless_kernel.cl

11 lines
194 B
Common Lisp

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