compute-runtime/opencl/test/unit_test/test_files/stateful_copy_buffer.cl

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