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

namespace tensorflow {
REGISTER3(UnaryOp, CPU, "Sin", functor::sin, float, double, complex64);
#if GOOGLE_CUDA
REGISTER2(UnaryOp, GPU, "Sin", functor::sin, float, double);
#endif
}  // namespace tensorflow