diff options
author | Zhigang Gong <zhigang.gong@intel.com> | 2014-10-31 10:22:17 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2014-11-04 19:15:23 +0800 |
commit | 1361240a540f2d597b16f0e37c78fbdba753de70 (patch) | |
tree | a38f33ed53c0dcc77f2be4f5972040ee6876671d /utests/compiler_box_blur_float.cpp | |
parent | 8cff1fda829bf886f07209bbb5a196039124028d (diff) |
utests: replace the nodistriutable picture.
According to https://bugs.debian.org/758442, we should not use
Len(n)a standard test image in our package. I just select a picture
took by myself. Thanks Rebecca for pointing this out.
v2:
forgot to add sample.bmp.
Signed-off-by: Zhigang Gong <zhigang.gong@intel.com>
Reviewed-by: "Yang, Rong R" <rong.r.yang@intel.com>
Diffstat (limited to 'utests/compiler_box_blur_float.cpp')
-rw-r--r-- | utests/compiler_box_blur_float.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utests/compiler_box_blur_float.cpp b/utests/compiler_box_blur_float.cpp index a3c97bc4..8a75a258 100644 --- a/utests/compiler_box_blur_float.cpp +++ b/utests/compiler_box_blur_float.cpp @@ -13,7 +13,7 @@ static void compiler_box_blur_float() OCL_CREATE_KERNEL("compiler_box_blur_float"); /* Load the picture */ - tmp = cl_read_bmp("lenna128x128.bmp", &w, &h); + tmp = cl_read_bmp("sample.bmp", &w, &h); sz = w * h * sizeof(float[4]); src = (float4*)malloc(sz); |