aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/Pad.hpp
blob: 42318d6fcfa4e8d9b17423abbf044dc91509cacb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "armnn/DescriptorsFwd.hpp"
#include "armnn/Tensor.hpp"

#include <vector>

namespace armnn
{
template <typename T>
void Pad(const TensorInfo& inputInfo,
         const TensorInfo& outputInfo,
         std::vector<std::pair<unsigned int, unsigned int>> m_PadList,
         const T* inputData,
         T* outData);
} //namespace armnn