[Beignet] [PATCH] test 64bit version of "upsample"

Zhigang Gong zhigang.gong at linux.intel.com
Fri Aug 16 01:01:29 PDT 2013


LGTM, pushed, thanks.

On Fri, Aug 16, 2013 at 03:54:24PM +0800, Homer Hsing wrote:
> 
> Signed-off-by: Homer Hsing <homer.xing at intel.com>
> ---
>  kernels/compiler_upsample_long.cl |  4 ++++
>  utests/CMakeLists.txt             |  1 +
>  utests/compiler_upsample_long.cpp | 38 ++++++++++++++++++++++++++++++++++++++
>  3 files changed, 43 insertions(+)
>  create mode 100644 kernels/compiler_upsample_long.cl
>  create mode 100644 utests/compiler_upsample_long.cpp
> 
> diff --git a/kernels/compiler_upsample_long.cl b/kernels/compiler_upsample_long.cl
> new file mode 100644
> index 0000000..16f806b
> --- /dev/null
> +++ b/kernels/compiler_upsample_long.cl
> @@ -0,0 +1,4 @@
> +kernel void compiler_upsample_int(global int *src1, global uint *src2, global long *dst) {
> +  int i = get_global_id(0);
> +  dst[i] = upsample(src1[i], src2[i]);
> +}
> diff --git a/utests/CMakeLists.txt b/utests/CMakeLists.txt
> index d3311ae..bd11d61 100644
> --- a/utests/CMakeLists.txt
> +++ b/utests/CMakeLists.txt
> @@ -74,6 +74,7 @@ set (utests_sources
>    compiler_uint16_copy.cpp
>    compiler_uint3_unaligned_copy.cpp
>    compiler_upsample_int.cpp
> +  compiler_upsample_long.cpp
>    compiler_unstructured_branch0.cpp
>    compiler_unstructured_branch1.cpp
>    compiler_unstructured_branch2.cpp
> diff --git a/utests/compiler_upsample_long.cpp b/utests/compiler_upsample_long.cpp
> new file mode 100644
> index 0000000..b125ff4
> --- /dev/null
> +++ b/utests/compiler_upsample_long.cpp
> @@ -0,0 +1,38 @@
> +#include <stdint.h>
> +#include "utest_helper.hpp"
> +
> +void compiler_upsample_long(void)
> +{
> +  const int n = 32;
> +  int src1[n];
> +  unsigned int src2[n];
> +
> +  // Setup kernel and buffers
> +  OCL_CREATE_KERNEL("compiler_upsample_long");
> +  OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(int), NULL);
> +  OCL_CREATE_BUFFER(buf[1], 0, n * sizeof(unsigned int), NULL);
> +  OCL_CREATE_BUFFER(buf[2], 0, n * sizeof(int64_t), NULL);
> +  OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
> +  OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
> +  OCL_SET_ARG(2, sizeof(cl_mem), &buf[2]);
> +  globals[0] = n;
> +  locals[0] = 16;
> +
> +  OCL_MAP_BUFFER(0);
> +  OCL_MAP_BUFFER(1);
> +  for (int i = 0; i < n; ++i) {
> +    src1[i] = ((int*)buf_data[0])[i] = rand();
> +    src2[i] = ((unsigned int*)buf_data[1])[i] = rand();
> +  }
> +  OCL_UNMAP_BUFFER(0);
> +  OCL_UNMAP_BUFFER(1);
> +
> +  OCL_NDRANGE(1);
> +
> +  OCL_MAP_BUFFER(2);
> +  for (int i = 0; i < n; ++i)
> +    OCL_ASSERT(((int64_t*)buf_data[2])[i] == (((int64_t)(src1[i]) << 32) | src2[i]));
> +  OCL_UNMAP_BUFFER(2);
> +}
> +
> +MAKE_UTEST_FROM_FUNCTION(compiler_upsample_long);
> -- 
> 1.8.1.2
> 
> _______________________________________________
> Beignet mailing list
> Beignet at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/beignet


More information about the Beignet mailing list