aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/SerializeLayerParameters.hpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2023-07-27 14:11:54 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2023-07-28 16:59:37 +0000
commita0cc6ff8065083b833dda9c3c5992938834bdf29 (patch)
treea5bacca27431c429ac982c44b0a698e6b20bfe03 /src/armnn/SerializeLayerParameters.hpp
parent65f9504e7381a28cda5f02c0e1bca65a1e2b90b2 (diff)
downloadarmnn-a0cc6ff8065083b833dda9c3c5992938834bdf29.tar.gz
IVGCVSW-7924 Add TILE to Support Library (SL)
* Add serialize parameters so that the multiples appear in the dot file Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: Id02ed709c97b866dabefed655b06bdb1b20c9026
Diffstat (limited to 'src/armnn/SerializeLayerParameters.hpp')
-rw-r--r--src/armnn/SerializeLayerParameters.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/armnn/SerializeLayerParameters.hpp b/src/armnn/SerializeLayerParameters.hpp
index b90f9d85e8..5b0378eab7 100644
--- a/src/armnn/SerializeLayerParameters.hpp
+++ b/src/armnn/SerializeLayerParameters.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017,2022 Arm Ltd. All rights reserved.
+// Copyright © 2017,2022-2023 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
@@ -189,6 +189,11 @@ template <> struct StringifyLayerParameters<SoftmaxDescriptor>
static void Serialize(ParameterStringifyFunction& fn, const SoftmaxDescriptor& desc);
};
+template <> struct StringifyLayerParameters<TileDescriptor>
+{
+ static void Serialize(ParameterStringifyFunction& fn, const TileDescriptor& desc);
+};
+
template <> struct StringifyLayerParameters<TransposeConvolution2dDescriptor>
{
static void Serialize(ParameterStringifyFunction& fn, const TransposeConvolution2dDescriptor& desc);