ArmNN
 25.11
Loading...
Searching...
No Matches
NeonPermuteWorkload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2017-2018,2021-2023 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
11
12#include <armnn/TypesUtils.hpp>
13#include <arm_compute/runtime/NEON/functions/NEPermute.h>
14
15#include <string>
16
17namespace armnn
18{
19arm_compute::Status NeonPermuteWorkloadValidate(const TensorInfo& input, const TensorInfo& output,
20 const PermuteDescriptor& descriptor);
21
22class NeonPermuteWorkload : public NeonBaseWorkload<PermuteQueueDescriptor>
23{
24public:
26 void Execute() const override;
27
28private:
30 mutable arm_compute::NEPermute m_PermuteFunction;
31};
32
33} // namespace armnn
NeonBaseWorkload(const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info)
NeonPermuteWorkload(const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
arm_compute::Status NeonPermuteWorkloadValidate(const TensorInfo &input, const TensorInfo &output, const PermuteDescriptor &descriptor)
A PermuteDescriptor for the PermuteLayer.
Contains information about TensorInfos of a layer.