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

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