Fix arg type in zello_world_jitc_ocloc test

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe 2021-01-26 15:48:13 +00:00 committed by Compute-Runtime-Automation
parent f583ec7d8f
commit 344c207e4d
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ extern bool verbose;
bool verbose = false;
const char *module = R"===(
__kernel void kernel_copy(__global int *dst, __global char *src){
__kernel void kernel_copy(__global char *dst, __global char *src){
uint gid = get_global_id(0);
dst[gid] = src[gid];
}