From f41959ccb2d9d4c722fe8fc3351401d53bcf4900 Mon Sep 17 00:00:00 2001 From: Manjunath Kudlur Date: Fri, 6 Nov 2015 16:27:58 -0800 Subject: TensorFlow: Initial commit of TensorFlow library. TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108 --- tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc (limited to 'tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc') diff --git a/tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc b/tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc new file mode 100644 index 0000000000..87d79ecb4d --- /dev/null +++ b/tensorflow/core/kernels/conv_ops_gpu_matmul.cu.cc @@ -0,0 +1,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; + +} // namespace tensorflow + +#endif // GOOGLE_CUDA -- cgit v1.2.3