summaryrefslogtreecommitdiff
path: root/Codes/flownet2/src/ops/correlation/pad.h
blob: afb4df013e86d7187bda590f8ec7d85182044d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef FLOWNET_PAD_H_
#define FLOWNET_PAD_H_

#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"

namespace tensorflow {
typedef Eigen::GpuDevice GPUDevice;

void Pad(const GPUDevice& device,
         const float     *input,
         int              batch_size,
         int              input_height,
         int              input_width,
         int              input_channels,
         int              output_height,
         int              output_width,
         float           *output);
} // end namespace tensorflow

#endif // ifndef FLOWNET_PAD_H_