aboutsummaryrefslogtreecommitdiff
path: root/tests/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Types.h')
-rw-r--r--tests/Types.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/Types.h b/tests/Types.h
index cb9b0b9d5a..516f61c44b 100644
--- a/tests/Types.h
+++ b/tests/Types.h
@@ -23,6 +23,11 @@
*/
#ifndef __ARM_COMPUTE_TEST_TYPES_H__
#define __ARM_COMPUTE_TEST_TYPES_H__
+
+#include "arm_compute/core/Types.h"
+
+#include <vector>
+
namespace arm_compute
{
/** Fixed point operation */
@@ -33,5 +38,14 @@ enum class FixedPointOp
INV_SQRT, /**< Inverse square root */
RECIPROCAL /**< Reciprocal */
};
+
+template <typename MinMaxType>
+struct MinMaxLocationValues
+{
+ MinMaxType min{};
+ MinMaxType max{};
+ std::vector<Coordinates2D> min_loc{};
+ std::vector<Coordinates2D> max_loc{};
+};
} // namespace arm_compute
#endif /* __ARM_COMPUTE_TEST_TYPES_H__ */