blob: bcc4e3fb4413a31dc0d99136b697e510f5e4ed04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef FLOWNET_DOWNSAMPLE_H_
#define FLOWNET_DOWNSAMPLE_H_
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "tensorflow/core/framework/tensor_types.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
typedef Eigen::GpuDevice GPUDevice;
bool Downsample(const GPUDevice& device,
typename TTypes<float, 4>::ConstTensor input,
typename TTypes<float, 4>::Tensor output);
} // end namespace tensorflow
#endif // FLOWNET_DOWNSAMPLE_H_
|