aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/TensorShape.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/TensorShape.h')
-rw-r--r--arm_compute/core/TensorShape.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/arm_compute/core/TensorShape.h b/arm_compute/core/TensorShape.h
index 6cf08de114..8d15c50220 100644
--- a/arm_compute/core/TensorShape.h
+++ b/arm_compute/core/TensorShape.h
@@ -138,17 +138,28 @@ public:
}
/** Collapses given dimension and above.
*
- * @note Precondition: dimension < TensorShape::num_max_dimensions
- *
* @param[in] dimension Size of the wanted dimension
*
* @return The linear size of the collapsed dimensions
*/
size_t total_size_upper(size_t dimension) const
{
+ ARM_COMPUTE_ERROR_ON(dimension >= TensorShape::num_max_dimensions);
return std::accumulate(_id.begin() + dimension, _id.end(), 1, std::multiplies<size_t>());
}
+ /** Compute size of dimensions lower than the given one.
+ *
+ * @param[in] dimension Upper boundary.
+ *
+ * @return The linear size of the collapsed dimensions.
+ */
+ size_t total_size_lower(size_t dimension) const
+ {
+ ARM_COMPUTE_ERROR_ON(dimension > TensorShape::num_max_dimensions);
+ return std::accumulate(_id.begin(), _id.begin() + dimension, 1, std::multiplies<size_t>());
+ }
+
private:
/** Remove trailing dimensions of size 1 from the reported number of dimensions. */
void apply_dimension_correction()