#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::ConstTensor input, typename TTypes::Tensor output); } // end namespace tensorflow #endif // FLOWNET_DOWNSAMPLE_H_