Files
compute-runtime/unit_tests/test_files/stateless_kernel.cl
Kamil Kopryk b71e3a8bee Add aub test with stateless path
Change-Id: I189deba70dbd9c7dfb33994b3a7876b3b889a47e
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
Related-To: NEO-3627
2019-09-20 12:13:40 +02:00

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;
}