aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/cwise_op_not_equal_to.cc
blob: 02d434a1c2ece2c7642d86249a4ed0670e9b2761 (plain)
1
2
3
4
5
6
7
8
9
10
#include "tensorflow/core/kernels/cwise_ops_common.h"

namespace tensorflow {
REGISTER5(BinaryOp, CPU, "NotEqual", functor::not_equal_to, float, double,
          int32, int64, complex64);
#if GOOGLE_CUDA
REGISTER3(BinaryOp, GPU, "NotEqual", functor::not_equal_to, float, double,
          int64);
#endif
}  // namespace tensorflow