aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/LogSoftmax.cpp
diff options
context:
space:
mode:
authorMatthew Sloyan <matthew.sloyan@arm.com>2020-09-09 09:07:37 +0100
committerJan Eilers <jan.eilers@arm.com>2020-09-17 08:31:09 +0000
commit171214c8ff275c90cd4f7fc23a34ec2c83b5ea39 (patch)
tree23fd3ee288d631c8c94bede71f89f0f1e12da862 /src/backends/reference/workloads/LogSoftmax.cpp
parenta25886e0966a6b9433cd23595688fadb88a161b2 (diff)
downloadarmnn-171214c8ff275c90cd4f7fc23a34ec2c83b5ea39.tar.gz
IVGCVSW-5300 Remove some boost::numeric_cast from armnn/backends
* Replaced with armnn/utility/NumericCast.hpp * Some exclusions in reference backend * Excluded as requires float implementation in NumericCast.hpp Signed-off-by: Matthew Sloyan <matthew.sloyan@arm.com> Change-Id: I9e4e9cd502c865452128fa04415fd6f250baa855
Diffstat (limited to 'src/backends/reference/workloads/LogSoftmax.cpp')
-rw-r--r--src/backends/reference/workloads/LogSoftmax.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/backends/reference/workloads/LogSoftmax.cpp b/src/backends/reference/workloads/LogSoftmax.cpp
index 1998f50c87..2b6384913e 100644
--- a/src/backends/reference/workloads/LogSoftmax.cpp
+++ b/src/backends/reference/workloads/LogSoftmax.cpp
@@ -8,17 +8,16 @@
#include <armnnUtils/TensorUtils.hpp>
#include <armnn/utility/Assert.hpp>
#include <armnn/utility/IgnoreUnused.hpp>
+#include <armnn/utility/NumericCast.hpp>
#include <cmath>
-#include <boost/numeric/conversion/cast.hpp>
-
namespace
{
inline bool ValidateAxis(int axis, unsigned int numDimensions)
{
- const int sNumDimensions = boost::numeric_cast<int>(numDimensions);
+ const int sNumDimensions = armnn::numeric_cast<int>(numDimensions);
return axis < sNumDimensions && axis >= -sNumDimensions;
}
@@ -40,8 +39,8 @@ void LogSoftmax(Decoder<float>& input,
IgnoreUnused(axisIsValid);
unsigned int uAxis = descriptor.m_Axis < 0 ?
- numDimensions - boost::numeric_cast<unsigned int>(std::abs(descriptor.m_Axis)) :
- boost::numeric_cast<unsigned int>(descriptor.m_Axis);
+ numDimensions - armnn::numeric_cast<unsigned int>(std::abs(descriptor.m_Axis)) :
+ armnn::numeric_cast<unsigned int>(descriptor.m_Axis);
const TensorShape& inputShape = inputInfo.GetShape();
const unsigned int outerSize = armnnUtils::GetNumElementsBetween(inputShape, 0, uAxis);