diff --git a/mace/kernels/opencl/resize_bilinear_opencl.cc b/mace/kernels/opencl/resize_bilinear_opencl.cc index 4b95bfdb692145f73266d4b46fe251c543071b43..6ad4a2d661ca092dfeb8198dda6519aa5c50bb44 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); }