aboutsummaryrefslogtreecommitdiff
path: root/include/armnnUtils/Transpose.hpp
blob: b0c1f08a98dd43c925360102c283d65379961013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright © 2020,2022 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/TensorFwd.hpp>
#include <armnn/Types.hpp>
#include <stddef.h>

namespace armnnUtils
{

armnn::TensorShape TransposeTensorShape(const armnn::TensorShape& srcShape, const armnn::PermutationVector& mappings);

armnn::TensorInfo TransposeTensorShape(const armnn::TensorInfo& info, const armnn::PermutationVector& mappings);

void Transpose(const armnn::TensorShape& dstShape, const armnn::PermutationVector& mappings,
               const void* src, void* dst, size_t dataTypeSize);

} // namespace armnnUtils