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, 0 insertions, 20 deletions
diff --git a/src/armnnUtils/Permute.hpp b/src/armnnUtils/Permute.hpp
deleted file mode 100644
index b9ef94bc86..0000000000
--- a/src/armnnUtils/Permute.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#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);
-
-void Permute(const armnn::TensorShape& dstShape, const armnn::PermutationVector& mappings,
- const void* src, void* dst, size_t dataTypeSize);
-
-} // namespace armnnUtils