mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Change-Id: I189deba70dbd9c7dfb33994b3a7876b3b889a47e Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com> Related-To: NEO-3627
11 lines
194 B
Common Lisp
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;
|
|
} |