aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLGaussianPyramid.h
diff options
context:
space:
mode:
authorSanghoon Lee <sanghoon.lee@arm.com>2018-03-15 11:48:48 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:37 +0000
commit1cd41495153c4e89d6195b42f870967339c1a13b (patch)
treeaf33572d72a3c1591148dbd6fc0fb9cf53a79ee3 /arm_compute/runtime/CL/functions/CLGaussianPyramid.h
parentc9c62c2fa1c80ba7f11b0d0732740460dfa00e74 (diff)
downloadComputeLibrary-1cd41495153c4e89d6195b42f870967339c1a13b.tar.gz
COMPMID-577: Implement CL validation for GaussianPyramid
Change-Id: If879cbe15b14d97818c24d44b29fc69b6c8cb686 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/127601 Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLGaussianPyramid.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLGaussianPyramid.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/runtime/CL/functions/CLGaussianPyramid.h b/arm_compute/runtime/CL/functions/CLGaussianPyramid.h
index 97935193dc..0110adfa20 100644
--- a/arm_compute/runtime/CL/functions/CLGaussianPyramid.h
+++ b/arm_compute/runtime/CL/functions/CLGaussianPyramid.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -90,7 +90,8 @@ public:
void run() override;
private:
- std::unique_ptr<CLFillBorderKernel[]> _border_handler;
+ std::unique_ptr<CLFillBorderKernel[]> _horizontal_border_handler;
+ std::unique_ptr<CLFillBorderKernel[]> _vertical_border_handler;
std::unique_ptr<CLGaussianPyramidHorKernel[]> _horizontal_reduction;
std::unique_ptr<CLGaussianPyramidVertKernel[]> _vertical_reduction;
};