mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-2993 Change-Id: I9668053aa749534d09501bfccb1a9b93e69f0e4e Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
14 lines
234 B
Common Lisp
14 lines
234 B
Common Lisp
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
__kernel void StatefulCopyBuffer(
|
|
const __global uchar* src,
|
|
__global uchar* dst)
|
|
{
|
|
uint id = get_global_id(0);
|
|
dst[id] = src[id];
|
|
} |