aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/test/NormTestImpl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/backends/test/NormTestImpl.hpp')
-rw-r--r--src/armnn/backends/test/NormTestImpl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/backends/test/NormTestImpl.hpp b/src/armnn/backends/test/NormTestImpl.hpp
index d9dc01592a..df8219ddbd 100644
--- a/src/armnn/backends/test/NormTestImpl.hpp
+++ b/src/armnn/backends/test/NormTestImpl.hpp
@@ -87,7 +87,7 @@ LayerTestResult<float,4> SimpleNormalizationTestImpl(armnn::IWorkloadFactory& wo
// When normalising within channels, the 3x3 kernel covers the entire 2x2 input at every index.
// Therefore, all output values should equal the inputs, but divided by:
// pow((kappa + (accumulatedScale * alpha)), beta)
- // ...where accumulatedScale is the sum of every element squared
+ // ...where accumulatedScale is the sum of every element squared.
float divisor[inputNum];
for(int i = 0; i < boost::numeric_cast<int>(inputNum); i++)
{
@@ -139,7 +139,7 @@ LayerTestResult<float,4> SimpleNormalizationTestImpl(armnn::IWorkloadFactory& wo
}
break;
}
- case armnn::NormalizationAlgorithmMethod::LocalContrast: // NOTE: intentional fallthrough
+ case armnn::NormalizationAlgorithmMethod::LocalContrast: // NOTE: intentional fallthrough.
default:
{
throw armnn::UnimplementedException("Unsupported normalisation method type, "