aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/SerializeLayerParameters.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/SerializeLayerParameters.cpp')
-rw-r--r--src/armnn/SerializeLayerParameters.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/armnn/SerializeLayerParameters.cpp b/src/armnn/SerializeLayerParameters.cpp
index 209be48248..c318d5273f 100644
--- a/src/armnn/SerializeLayerParameters.cpp
+++ b/src/armnn/SerializeLayerParameters.cpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017,2022 Arm Ltd. All rights reserved.
+// Copyright © 2017,2022-2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "SerializeLayerParameters.hpp"
@@ -205,6 +205,7 @@ void StringifyLayerParameters<FullyConnectedDescriptor>::Serialize(ParameterStri
{
fn("BiasEnabled", (desc.m_BiasEnabled ? "true" : "false"));
fn("TransposeWeightMatrix", (desc.m_TransposeWeightMatrix ? "true" : "false"));
+ fn("ConstantWeights", (desc.m_ConstantWeights ? "true" : "false"));
}
void StringifyLayerParameters<GatherDescriptor>::Serialize(ParameterStringifyFunction& fn,