aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/ElementwiseFunction.cpp
diff options
context:
space:
mode:
authorsaoste01 <saoirse.stewart@arm.com>2018-11-28 16:57:20 +0000
committerLes Bell <les.bell@arm.com>2018-11-29 10:28:22 +0000
commit2df12b3abf2171869582581dd275d556bad87411 (patch)
tree6c6345b45bd04dd7d4c29d889bf1cfe9428a1c0c /src/backends/reference/workloads/ElementwiseFunction.cpp
parent90539697433b507e20cf0d56f6c7f18614e03973 (diff)
downloadarmnn-2df12b3abf2171869582581dd275d556bad87411.tar.gz
IVGCVSW-2254 Add Reference workload for Maximum
Change-Id: Id7302c6b1df995ebe6eb8eb94bab38bee1b31b0b
Diffstat (limited to 'src/backends/reference/workloads/ElementwiseFunction.cpp')
-rw-r--r--src/backends/reference/workloads/ElementwiseFunction.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backends/reference/workloads/ElementwiseFunction.cpp b/src/backends/reference/workloads/ElementwiseFunction.cpp
index bea3d2fb89..bb15049faa 100644
--- a/src/backends/reference/workloads/ElementwiseFunction.cpp
+++ b/src/backends/reference/workloads/ElementwiseFunction.cpp
@@ -7,6 +7,8 @@
#include "Broadcast.hpp"
#include <functional>
+#include "Maximum.hpp"
+
namespace armnn
{
@@ -27,3 +29,4 @@ template struct armnn::ElementwiseFunction<std::plus<float>>;
template struct armnn::ElementwiseFunction<std::minus<float>>;
template struct armnn::ElementwiseFunction<std::multiplies<float>>;
template struct armnn::ElementwiseFunction<std::divides<float>>;
+template struct armnn::ElementwiseFunction<armnn::maximum<float>>; \ No newline at end of file