aboutsummaryrefslogtreecommitdiff
path: root/include/armnnUtils/Permute.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnnUtils/Permute.hpp')
-rw-r--r--include/armnnUtils/Permute.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/armnnUtils/Permute.hpp b/include/armnnUtils/Permute.hpp
index 4e9bfc0823..d719f4a623 100644
--- a/include/armnnUtils/Permute.hpp
+++ b/include/armnnUtils/Permute.hpp
@@ -11,9 +11,12 @@
namespace armnnUtils
{
-armnn::TensorShape Permuted(const armnn::TensorShape& srcShape, const armnn::PermutationVector& mappings);
+armnn::TensorShape Permuted(const armnn::TensorShape& srcShape,
+ const armnn::PermutationVector& mappings);
-armnn::TensorInfo Permuted(const armnn::TensorInfo& info, const armnn::PermutationVector& mappings);
+armnn::TensorInfo Permuted(const armnn::TensorInfo& info,
+ const armnn::PermutationVector& mappings,
+ bool perChannelPermute = false);
void Permute(const armnn::TensorShape& dstShape, const armnn::PermutationVector& mappings,
const void* src, void* dst, size_t dataTypeSize);