diff options
author | Pan Xiuli <xiuli.pan@intel.com> | 2016-09-27 13:11:07 +0800 |
---|---|---|
committer | Yang Rong <rong.r.yang@intel.com> | 2016-09-28 16:05:16 +0800 |
commit | aacbb6f2a7f54ecfb73cf9a2f0a70d6407cfce5e (patch) | |
tree | 7248c3945b1524a71ab07f7e6b4c9ccf992e98e5 /kernels | |
parent | 08690c3ccfb09ced46bf800a3b1daca7df2e9f26 (diff) |
Utest: read/write_only qualifier should only used with image.
Signed-off-by: Pan Xiuli <xiuli.pan@intel.com>
Reviewed-by: Ruiling Song <ruiling.song@intel.com>
Diffstat (limited to 'kernels')
-rw-r--r-- | kernels/test_get_arg_info.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernels/test_get_arg_info.cl b/kernels/test_get_arg_info.cl index ae088874..b9201a4f 100644 --- a/kernels/test_get_arg_info.cl +++ b/kernels/test_get_arg_info.cl @@ -3,6 +3,6 @@ typedef struct _test_arg_struct { int b; }test_arg_struct; -kernel void test_get_arg_info(read_only global float const volatile *src, read_write local int *dst, test_arg_struct extra) { +kernel void test_get_arg_info(global float const volatile *src, local int *dst, test_arg_struct extra) { } |