ArmNN
 20.02
Pad.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
9 #include "armnn/Tensor.hpp"
10 
11 #include <vector>
12 
13 namespace armnn
14 {
15 template <typename T>
16 void Pad(const TensorInfo& inputInfo,
17  const TensorInfo& outputInfo,
18  std::vector<std::pair<unsigned int, unsigned int>> m_padList,
19  const T* inputData,
20  T* outData,
21  const float padValue);
22 } //namespace armnn
Copyright (c) 2020 ARM Limited.
void Pad(const TensorInfo &inputInfo, const TensorInfo &outputInfo, std::vector< std::pair< unsigned int, unsigned int >> m_padList, const T *inputData, T *outData, const float padValue)
Definition: Pad.cpp:22