blob: 59407d4a4ead39cd30f6afaacc56b94eee79f8ad [file] [log] [blame]
Tianle Cheng988354d2023-06-28 13:20:47 +01001//
2// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "Encoders.hpp"
9#include "Decoders.hpp"
10
11#include <armnn/backends/WorkloadData.hpp>
12
13namespace armnn
14{
15
Tracy Narinebb8d7592023-07-13 16:50:54 +010016void ReverseV2(const TensorInfo& inputInfo,
17 const TensorInfo& axisInfo,
Tianle Cheng988354d2023-06-28 13:20:47 +010018 Decoder<float>& inputDecoder,
Tracy Narinebb8d7592023-07-13 16:50:54 +010019 Decoder<int>& axisDecoder,
Tianle Cheng988354d2023-06-28 13:20:47 +010020 Encoder<float>& outputEncoder);
21
Tracy Narinebb8d7592023-07-13 16:50:54 +010022} // namespace armnn