aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/LayerWithParameters.hpp
diff options
context:
space:
mode:
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;
};