aboutsummaryrefslogtreecommitdiff
path: root/src/backends
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-03-08 11:08:30 +0000
committerJim Flynn <jim.flynn@arm.com>2019-03-12 10:43:34 +0000
commit18ce338711fc3ea44a7731eac795964256beac6c (patch)
tree93467a86f34cea694e08bf539b3d315680771a3a /src/backends
parent1b4d7b1e0646104210f626e7f9613c506f097e90 (diff)
downloadarmnn-18ce338711fc3ea44a7731eac795964256beac6c.tar.gz
IVGCVSW-2709 Serialize / de-serialize the Splitter layer
* fixed typo in Ref Merger Workload comment * fixed typo in ViewsDescriptor comment * made the origins descriptor accessable in the ViewsDescriptor (needed for serialization) * based the unit test on the use of the splitter in the CaffeParser Change-Id: I3e716839adb4eee5a695633377b49e7e18ec2aa9 Signed-off-by: Ferran Balaguer <ferran.balaguer@arm.com> Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/backends')
-rw-r--r--src/backends/reference/workloads/Merger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/reference/workloads/Merger.cpp b/src/backends/reference/workloads/Merger.cpp
index 10cc2494c4..8877ee2284 100644
--- a/src/backends/reference/workloads/Merger.cpp
+++ b/src/backends/reference/workloads/Merger.cpp
@@ -21,7 +21,7 @@ void CopyValue<uint8_t>(const uint8_t& source, const TensorInfo& sourceInfo, uin
if (sourceInfo.GetQuantizationScale() != destInfo.GetQuantizationScale() ||
sourceInfo.GetQuantizationOffset() != destInfo.GetQuantizationOffset())
{
- // Dequantize value acording to sourceInfo params
+ // Dequantize value according to sourceInfo params
float dequantizedValue = armnn::Dequantize<uint8_t>(source,
sourceInfo.GetQuantizationScale(),
sourceInfo.GetQuantizationOffset());