diff options
author | Homer Hsing <homer.xing@intel.com> | 2013-08-19 09:41:17 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@linux.intel.com> | 2013-08-19 11:57:03 +0800 |
commit | 5e53b9fd4e05f80620b7164bf82bfa3369cc4e2b (patch) | |
tree | 81b34e73de1fa1cf8da0e6f7bfcf87eea70fb374 /kernels | |
parent | cc09b26a36243a905aa5bc479eb8447b73b89cf0 (diff) |
fix a typo
Signed-off-by: Homer Hsing <homer.xing@intel.com>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'kernels')
-rw-r--r-- | kernels/compiler_upsample_long.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernels/compiler_upsample_long.cl b/kernels/compiler_upsample_long.cl index 16f806be..8f914e4a 100644 --- a/kernels/compiler_upsample_long.cl +++ b/kernels/compiler_upsample_long.cl @@ -1,4 +1,4 @@ -kernel void compiler_upsample_int(global int *src1, global uint *src2, global long *dst) { +kernel void compiler_upsample_long(global int *src1, global uint *src2, global long *dst) { int i = get_global_id(0); dst[i] = upsample(src1[i], src2[i]); } |