mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00
15 lines
274 B
Common Lisp
15 lines
274 B
Common Lisp
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
__kernel void testIndirect(__global long* buf) {
|
|
size_t gid = get_global_id(0);
|
|
if (gid == 0) {
|
|
__global char* val = (__global char*)buf[0];
|
|
*val = 1;
|
|
}
|
|
}
|