aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/LayerWithParameters.hpp
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
committertelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
commitc577f2c6a3b4ddb6ba87a882723c53a248afbeba (patch)
treebd7d4c148df27f8be6649d313efb24f536b7cf34 /src/armnn/layers/LayerWithParameters.hpp
parent4c7098bfeab1ffe1cdc77f6c15548d3e73274746 (diff)
downloadarmnn-c577f2c6a3b4ddb6ba87a882723c53a248afbeba.tar.gz
Release 18.08
Diffstat (limited to 'src/armnn/layers/LayerWithParameters.hpp')
-rw-r--r--src/armnn/layers/LayerWithParameters.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/armnn/layers/LayerWithParameters.hpp b/src/armnn/layers/LayerWithParameters.hpp
index e3eb40a273..c071c15c21 100644
--- a/src/armnn/layers/LayerWithParameters.hpp
+++ b/src/armnn/layers/LayerWithParameters.hpp
@@ -18,7 +18,7 @@ public:
const Parameters& GetParameters() const { return m_Param; }
/// Helper to serialize the layer parameters to string
- /// (currently used in DotSerializer and company)
+ /// (currently used in DotSerializer and company).
void SerializeLayerParameters(ParameterStringifyFunction & fn) const
{
StringifyLayerParameters<Parameters>::Serialize(fn, m_Param);
@@ -37,7 +37,7 @@ protected:
~LayerWithParameters() = default;
- /// Helper function to reduce duplication in *Layer::CreateWorkload
+ /// Helper function to reduce duplication in *Layer::CreateWorkload.
template <typename QueueDescriptor>
WorkloadInfo PrepInfoAndDesc(QueueDescriptor& descriptor, const Graph& graph) const
{
@@ -45,7 +45,7 @@ protected:
return Layer::PrepInfoAndDesc(descriptor, graph);
}
- /// The parameters for the layer (not including tensor-valued weights etc.)
+ /// The parameters for the layer (not including tensor-valued weights etc.).
Parameters m_Param;
};