mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00
11 lines
199 B
Common Lisp
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;
|
|
} |