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

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