ArmNN
 25.11
Loading...
Searching...
No Matches
NeonReverseV2Workload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
9
10#include <arm_compute/runtime/NEON/functions/NEReverse.h>
11#include <arm_compute/runtime/Tensor.h>
12
13namespace armnn
14{
15arm_compute::Status NeonReverseV2WorkloadValidate(const TensorInfo& input,
16 const TensorInfo& axis,
17 const TensorInfo& output);
18
19class NeonReverseV2Workload : public BaseWorkload<ReverseV2QueueDescriptor>
20{
21public:
23 void Execute() const override;
24
25private:
26 mutable arm_compute::NEReverse m_Layer;
27};
28
29} // namespace armnn
BaseWorkload(const ReverseV2QueueDescriptor &descriptor, const WorkloadInfo &info)
Definition Workload.hpp:35
NeonReverseV2Workload(const ReverseV2QueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
arm_compute::Status NeonReverseV2WorkloadValidate(const TensorInfo &input, const TensorInfo &axis, const TensorInfo &output)
Contains information about TensorInfos of a layer.