aboutsummaryrefslogtreecommitdiff
path: root/src/graph
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph')
-rw-r--r--src/graph/backends/CL/CLFunctionsFactory.cpp1
-rw-r--r--src/graph/backends/CL/CLNodeValidator.cpp1
-rw-r--r--src/graph/backends/NEON/NEFunctionFactory.cpp1
-rw-r--r--src/graph/backends/NEON/NENodeValidator.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/src/graph/backends/CL/CLFunctionsFactory.cpp b/src/graph/backends/CL/CLFunctionsFactory.cpp
index d41da4bf7f..c9d1f6a2bb 100644
--- a/src/graph/backends/CL/CLFunctionsFactory.cpp
+++ b/src/graph/backends/CL/CLFunctionsFactory.cpp
@@ -64,6 +64,7 @@ struct CLEltwiseFunctions
using Addition = CLArithmeticAddition;
using Subtraction = CLArithmeticSubtraction;
using Multiplication = CLPixelWiseMultiplication;
+ using Maximum = CLElementwiseMax;
};
/** Collection of CL unary element-wise functions */
diff --git a/src/graph/backends/CL/CLNodeValidator.cpp b/src/graph/backends/CL/CLNodeValidator.cpp
index cc618db127..7646ac323f 100644
--- a/src/graph/backends/CL/CLNodeValidator.cpp
+++ b/src/graph/backends/CL/CLNodeValidator.cpp
@@ -44,6 +44,7 @@ struct CLEltwiseLayerFunctions
using ArithmeticAddition = CLArithmeticAddition;
using ArithmeticSubtraction = CLArithmeticSubtraction;
using PixelWiseMultiplication = CLPixelWiseMultiplication;
+ using ElementwiseMax = CLElementwiseMax;
};
/** Collection of CL unary element-wise functions */
diff --git a/src/graph/backends/NEON/NEFunctionFactory.cpp b/src/graph/backends/NEON/NEFunctionFactory.cpp
index 4fee630192..1a1519bb6d 100644
--- a/src/graph/backends/NEON/NEFunctionFactory.cpp
+++ b/src/graph/backends/NEON/NEFunctionFactory.cpp
@@ -69,6 +69,7 @@ struct NEEltwiseFunctions
using Addition = NEArithmeticAddition;
using Subtraction = NEArithmeticSubtraction;
using Multiplication = NEPixelWiseMultiplication;
+ using Maximum = NEElementwiseMax;
};
/** Collection of NEON unary element-wise functions */
diff --git a/src/graph/backends/NEON/NENodeValidator.cpp b/src/graph/backends/NEON/NENodeValidator.cpp
index a5d22fb965..74c959a95e 100644
--- a/src/graph/backends/NEON/NENodeValidator.cpp
+++ b/src/graph/backends/NEON/NENodeValidator.cpp
@@ -44,6 +44,7 @@ struct NEEltwiseLayerFunctions
using ArithmeticAddition = NEArithmeticAddition;
using ArithmeticSubtraction = NEArithmeticSubtraction;
using PixelWiseMultiplication = NEPixelWiseMultiplication;
+ using ElementwiseMax = NEElementwiseMax;
};
/** Collection of NEON unary element-wise functions */