aboutsummaryrefslogtreecommitdiff
path: root/src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2024-03-26 11:18:42 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2024-04-11 17:15:37 +0000
commit571a4f723042215f52a6c0366347c5b23f48c902 (patch)
tree7dd3bc5f880bc6aef86bc5d7b54fd2e308d84dfe /src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp
parent079df4a002220722f1e580eba0d4d881b19cc337 (diff)
downloadarmnn-571a4f723042215f52a6c0366347c5b23f48c902.tar.gz
IVGCVSW-8165: Update TOSA Common and TosaRef to use TOSA v0.80
* Keep the order of the operators in TosaRef, so that const ops go first * Remove IsLayerSupportedTosaReferenceConstantUnsupported and open ticket in MLTOSA Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: Ifaa6c26dd8ad7d531f1691320d8c731956b910aa
Diffstat (limited to 'src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp')
-rw-r--r--src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp b/src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp
index a0432846f5..1a4dd7aac3 100644
--- a/src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp
+++ b/src/backends/tosaCommon/operatorMappings/TosaRescaleOperatorUtils.hpp
@@ -33,7 +33,9 @@ inline void CreateRescaleTosaOperator(const std::string& inputName,
shifts,
scale32,
double_round,
- false);
+ false, // per_channel
+ false, // input_unsigned
+ false); // output_unsigned
// op
*op = new TosaSerializationOperator(Op_RESCALE, Attribute_RescaleAttribute, &attribute, {inputName}, {outputName});