From abf3e41e65474248644dda13524ca8c0446935bf Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Wed, 8 Nov 2017 11:22:44 +0800 Subject: [PATCH] Add TODO for kernel work group size --- mace/kernels/opencl/resize_bilinear_opencl.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/mace/kernels/opencl/resize_bilinear_opencl.cc b/mace/kernels/opencl/resize_bilinear_opencl.cc index 4b95bfdb..6ad4a2d6 100644 --- a/mace/kernels/opencl/resize_bilinear_opencl.cc +++ b/mace/kernels/opencl/resize_bilinear_opencl.cc @@ -46,6 +46,7 @@ void ResizeBilinearFunctor::operator()( rb_kernel, cl::NullRange, cl::NDRange(static_cast(batch * channels), static_cast(out_height), static_cast(out_width)), + // TODO (heliangliang) tuning and fix when kwg_size < devisor cl::NDRange(1, 16, kwg_size / 16)); MACE_CHECK(error == CL_SUCCESS, error); } -- GitLab