aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Utils.cpp b/Utils.cpp
index 00d61c7b..a7df499c 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -11,6 +11,7 @@
#include <armnnUtils/Permute.hpp>
#include <armnn/Utils.hpp>
+#include <armnn/utility/Assert.hpp>
#include <cassert>
#include <cerrno>
@@ -146,7 +147,7 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_2::Operand& operand)
if (perChannel)
{
// ExtraParams is expected to be of type channelQuant
- BOOST_ASSERT(operand.extraParams.getDiscriminator() ==
+ ARMNN_ASSERT(operand.extraParams.getDiscriminator() ==
V1_2::Operand::ExtraParams::hidl_discriminator::channelQuant);
auto perAxisQuantParams = operand.extraParams.channelQuant();
@@ -210,7 +211,7 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_3::Operand& operand)
if (perChannel)
{
// ExtraParams is expected to be of type channelQuant
- BOOST_ASSERT(operand.extraParams.getDiscriminator() ==
+ ARMNN_ASSERT(operand.extraParams.getDiscriminator() ==
V1_2::Operand::ExtraParams::hidl_discriminator::channelQuant);
auto perAxisQuantParams = operand.extraParams.channelQuant();
@@ -415,7 +416,7 @@ void DumpJsonProfilingIfRequired(bool gpuProfilingEnabled,
return;
}
- BOOST_ASSERT(profiler);
+ ARMNN_ASSERT(profiler);
// Set the name of the output profiling file.
const std::string fileName = boost::str(boost::format("%1%/%2%_%3%.json")