aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/TransposeLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/TransposeLayer.hpp')
-rw-r--r--src/armnn/layers/TransposeLayer.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/armnn/layers/TransposeLayer.hpp b/src/armnn/layers/TransposeLayer.hpp
index 4906bc9412..a668ce835e 100644
--- a/src/armnn/layers/TransposeLayer.hpp
+++ b/src/armnn/layers/TransposeLayer.hpp
@@ -6,6 +6,8 @@
#include "LayerWithParameters.hpp"
+#include <armnn/utility/PolymorphicDowncast.hpp>
+
namespace armnn
{
@@ -43,7 +45,7 @@ public:
bool IsInverse(const Layer& other) const
{
return (other.GetType() == LayerType::Transpose) &&
- GetPermutation().IsInverse(boost::polymorphic_downcast<const TransposeLayer*>(&other)->GetPermutation());
+ GetPermutation().IsInverse(PolymorphicDowncast<const TransposeLayer*>(&other)->GetPermutation());
}
/// Indicates if the other layer received is equal to this one.
@@ -52,7 +54,7 @@ public:
bool IsEqual(const Layer& other) const
{
return (other.GetType() == LayerType::Transpose) &&
- GetPermutation().IsEqual(boost::polymorphic_downcast<const TransposeLayer*>(&other)->GetPermutation());
+ GetPermutation().IsEqual(PolymorphicDowncast<const TransposeLayer*>(&other)->GetPermutation());
}
void Accept(ILayerVisitor& visitor) const override;