aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/IAccessWindow.h
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-11-15 09:58:00 +0000
committerAnthony Barbier <Anthony.barbier@arm.com>2018-11-15 11:14:59 +0000
commitee50f51206a41e0fbc7fc156659eaa8b8de5c46e (patch)
treed6629d0588a38aa45207ebd1a0cfee7220b2e389 /arm_compute/core/IAccessWindow.h
parent10565950fadcd37f09df3226b04b1de5ddc58e8a (diff)
downloadComputeLibrary-ee50f51206a41e0fbc7fc156659eaa8b8de5c46e.tar.gz
COMPMID-1784 Fixed the padding checks in AccessWindowRectangle::update_window_if_needed()
Change-Id: I56426cc9c9688a0aa0acdd439d5887c7ef208cd2 Note: The code to shrink the window hasn't been fixed yet.
Diffstat (limited to 'arm_compute/core/IAccessWindow.h')
-rw-r--r--arm_compute/core/IAccessWindow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm_compute/core/IAccessWindow.h b/arm_compute/core/IAccessWindow.h
index ab05fbf5e4..22232ab554 100644
--- a/arm_compute/core/IAccessWindow.h
+++ b/arm_compute/core/IAccessWindow.h
@@ -193,6 +193,8 @@ public:
bool update_window_if_needed(Window &window) const override;
bool update_padding_if_needed(const Window &window) override;
+protected:
+ PaddingSize get_needed_padding(const Window &window)const;
protected:
ITensorInfo *_info;