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

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

namespace tensorflow {
namespace functor {
template struct BinaryFunctor<GPUDevice, logical_or, 1>;
template struct BinaryFunctor<GPUDevice, logical_or, 2>;
template struct BinaryFunctor<GPUDevice, logical_or, 3>;
}  // namespace functor
}  // namespace tensorflow

#endif  // GOOGLE_CUDA