aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClPool2d.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClPool2d.h')
-rw-r--r--src/gpu/cl/operators/ClPool2d.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gpu/cl/operators/ClPool2d.h b/src/gpu/cl/operators/ClPool2d.h
index a041053bb3..f353ba262e 100644
--- a/src/gpu/cl/operators/ClPool2d.h
+++ b/src/gpu/cl/operators/ClPool2d.h
@@ -35,7 +35,6 @@ namespace opencl
{
/** Basic function to simulate a pooling layer with the specified pooling operation. This function calls the following OpenCL kernels:
*
- * -# @ref CLFillBorderKernel (executed if padding size is different from zero)
* -# @ref opencl::ClPool2d
*/
class ClPool2d : public IClOperator
@@ -59,13 +58,6 @@ public:
* @return a status
*/
static Status validate(const ITensorInfo *src, const ITensorInfo *dst, const PoolingLayerInfo &info, const ITensorInfo *indices = nullptr);
-
- // Inherited method overridden
- void run(ITensorPack &tensors) override;
-
-private:
- std::unique_ptr<ICLKernel> _pooling{ nullptr };
- std::unique_ptr<ICLKernel> _border_handler{ nullptr };
};
} // namespace opencl
} // namespace arm_compute