3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-19 05:35:53 +00:00
2022-04-02 18:06:01 +05:00

24 lines
633 B
C++

//
// Copyright © 2019 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