aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc
blob: 87d79ecb4de457443f56f0477375786bfc71dbae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if GOOGLE_CUDA

#define EIGEN_USE_GPU

#include "tensorflow/core/kernels/conv_2d.h"

#include "tensorflow/core/framework/register_types.h"

namespace tensorflow {

typedef Eigen::GpuDevice GPUDevice;
template struct functor::MatMulConvFunctor<GPUDevice, float>;

}  // namespace tensorflow

#endif  // GOOGLE_CUDA