aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Window.h
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-07-11 18:13:08 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:15:39 +0100
commitbe35b0ed7cb6fbf9010142aab97854c467b14c5c (patch)
treebd654b559317e438a6703a09e243e4401d41d07d /arm_compute/core/Window.h
parent7ff47a313d62011923c5307cc52510b4ba41a631 (diff)
downloadComputeLibrary-be35b0ed7cb6fbf9010142aab97854c467b14c5c.tar.gz
COMPMID-443: Collapse higher dimensions for activation layer
Change-Id: I5943235aff1bb6440e3ab08e818d53aa5d94143a Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80349 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'arm_compute/core/Window.h')
-rw-r--r--arm_compute/core/Window.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arm_compute/core/Window.h b/arm_compute/core/Window.h
index 6e7ef22531..a2fbc8f06f 100644
--- a/arm_compute/core/Window.h
+++ b/arm_compute/core/Window.h
@@ -326,6 +326,17 @@ public:
return _num_threads;
}
+ /* Collapse the dimensions higher than @p first if possible.
+ *
+ * A dimension is collapsable if it starts from 0 and matches the corresponding dimension in the full_window
+ *
+ * @param[in] full_window Full window @p window has been created from.
+ * @param[in] first Dimensions into which the following are collapsed.
+ *
+ * @return Collapsed window.
+ */
+ Window collapse_if_possible(const Window &full_window, size_t first) const;
+
private:
/** First slice of the window
*