• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "armnn/Tensor.hpp"
9 
10 #include <armnn/backends/Workload.hpp>
11 #include <armnn/backends/WorkloadData.hpp>
12 
13 namespace armnn
14 {
15 
16 void MirrorPad(const TensorInfo& inputInfo,
17                const TensorInfo& outputInfo,
18                const ITensorHandle* inputHandle,
19                ITensorHandle* outputHandle,
20                const PadQueueDescriptor& data);
21 
22 } //namespace armnn
23