aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClReverseV2Workload.hpp
blob: 60d4a500e03ed5d81e2bf3263b8ab4391ccee125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "ClBaseWorkload.hpp"

#include <arm_compute/runtime/CL/functions/CLReverse.h>
#include <arm_compute/runtime/Tensor.h>
#include "arm_compute/runtime/CL/CLTensor.h"

namespace armnn
{
arm_compute::Status ClReverseV2WorkloadValidate(const TensorInfo& input,
                                                const TensorInfo& axis,
                                                const TensorInfo& output);

class ClReverseV2Workload : public BaseWorkload<ReverseV2QueueDescriptor> 
{
public:
    ClReverseV2Workload(const ReverseV2QueueDescriptor &descriptor,
                        const WorkloadInfo &info,
                        const arm_compute::CLCompileContext& clCompileContext);

    void Execute() const override;

private:
    mutable arm_compute::CLReverse m_Layer;
};

} //namespace armnn