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

namespace tensorflow {
REGISTER2(UnaryOp, CPU, "Ceil", functor::ceil, float, double);
#if GOOGLE_CUDA
REGISTER2(UnaryOp, GPU, "Ceil", functor::ceil, float, double);
#endif
}  // namespace tensorflow