aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/LogSoftmaxLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/LogSoftmaxLayer.cpp')
-rw-r--r--src/armnn/layers/LogSoftmaxLayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnn/layers/LogSoftmaxLayer.cpp b/src/armnn/layers/LogSoftmaxLayer.cpp
index 24b6fde339..627aa4cdd3 100644
--- a/src/armnn/layers/LogSoftmaxLayer.cpp
+++ b/src/armnn/layers/LogSoftmaxLayer.cpp
@@ -34,7 +34,7 @@ void LogSoftmaxLayer::ValidateTensorShapesFromInputs()
VerifyLayerConnections(1, CHECK_LOCATION());
auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });
- BOOST_ASSERT(inferredShapes.size() == 1);
+ ARMNN_ASSERT(inferredShapes.size() == 1);
ConditionalThrowIfNotEqual<LayerValidationException>(
"LogSoftmaxLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",