aboutsummaryrefslogtreecommitdiff
path: root/src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2022-12-05 11:24:35 +0000
committerNikhil Raj Arm <nikhil.raj@arm.com>2022-12-23 10:28:30 +0000
commit9a33946fd0d5e14be6f957b5a985438fa69684d6 (patch)
tree07b93ffccc31c2183567fda3523d79a82510745b /src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp
parent259adafd6840c612c2eb64653290cbe2cfa7cd8e (diff)
downloadarmnn-9a33946fd0d5e14be6f957b5a985438fa69684d6.tar.gz
IVGCVSW-7172 Add ElementwiseBinary (Subtraction & Multiplication) support to TOSA Reference Backend
* Removed AdditionOperator and moved to new ElementwiseBinaryOperator. Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Signed-off-by: Matthew Sloyan <matthew.sloyan@arm.com> Change-Id: I8ce20f7575d68334aadcd176827bca3db53d0052
Diffstat (limited to 'src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp')
-rw-r--r--src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp b/src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp
index 052c54c3af..7b117d8443 100644
--- a/src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp
+++ b/src/backends/tosaCommon/operatorMappings/TosaCommonOperators.hpp
@@ -5,12 +5,12 @@
#pragma once
-#include "AdditionOperator.hpp"
+#include "AvgPool2DIgnoreValueOperator.hpp"
#include "ConcatOperator.hpp"
#include "ConstantOperator.hpp"
#include "Conv2dOperator.hpp"
-#include "AvgPool2DIgnoreValueOperator.hpp"
+#include "ElementwiseBinaryOperator.hpp"
#include "Pooling2DOperator.hpp"
#include "ReshapeOperator.hpp"
#include "SliceOperator.hpp"
-#include "TransposeConv2dOperator.hpp" \ No newline at end of file
+#include "TransposeConv2dOperator.hpp"