mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
15 lines
236 B
Common Lisp
15 lines
236 B
Common Lisp
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
__kernel void StatelessCopyBuffer(
|
|
const __global uchar* src,
|
|
__global uchar* dst)
|
|
{
|
|
uint id = get_global_id(0);
|
|
dst[id] = src[id];
|
|
}
|