Files
compute-runtime/unit_tests/test_files/stateful_copy_buffer.cl
Milczarek, Slawomir 7fe6a2fbed Add oclock option to force stateless to stateful optimization
Related-To: NEO-2993

Change-Id: I9668053aa749534d09501bfccb1a9b93e69f0e4e
Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
2020-01-29 10:23:47 +01:00

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