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

#include "tensorflow/core/kernels/cwise_ops_gpu_common.cu.h"

namespace tensorflow {
namespace functor {
template struct SelectFunctor<GPUDevice, float>;
template struct SelectFunctor<GPUDevice, double>;
template struct SelectFunctor<GPUDevice, int32>;
template struct SelectFunctor<GPUDevice, int64>;
template struct SelectFunctor<GPUDevice, complex64>;
}  // namespace functor
}  // namespace tensorflow

#endif  // GOOGLE_CUDA