aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Permute.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/Permute.hpp')
-rw-r--r--src/armnnUtils/Permute.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/armnnUtils/Permute.hpp b/src/armnnUtils/Permute.hpp
new file mode 100644
index 0000000000..44f7a281bb
--- /dev/null
+++ b/src/armnnUtils/Permute.hpp
@@ -0,0 +1,20 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include <armnn/TensorFwd.hpp>
+#include <armnn/Types.hpp>
+
+namespace armnnUtils
+{
+
+armnn::TensorShape Permuted(const armnn::TensorShape& srcShape, const armnn::PermutationVector& mappings);
+
+armnn::TensorInfo Permuted(const armnn::TensorInfo& info, const armnn::PermutationVector& mappings);
+
+template <typename T>
+void Permute(const armnn::TensorShape& dstShape, const armnn::PermutationVector& mappings, const T* src, T* dst);
+
+} // namespace armnnUtils \ No newline at end of file