mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:56:36 +08:00
Change-Id: If241bcf10875c49614a7ad5dbbba5a17bd526c2e Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
15 lines
232 B
Common Lisp
15 lines
232 B
Common Lisp
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
__kernel void test() {
|
|
printf("OpenCL\n");
|
|
}
|
|
|
|
__kernel void test_printf_number(__global uint* in) {
|
|
printf("in[0] = %d\n", in[0]);
|
|
}
|