aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/cwise_op_expm1.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-15 15:40:51 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-15 15:45:49 -0800
commit6731e21360ac2fd2fa4999a12e87ae72acfcb2d2 (patch)
treedcc2c62ff497cd37bb9819f59111a8a7073296ea /tensorflow/core/kernels/cwise_op_expm1.cc
parentffe08d38d747735eafe741467ce9092bcf126fa9 (diff)
Add Expm1 Op.
Change: 142198004
Diffstat (limited to 'tensorflow/core/kernels/cwise_op_expm1.cc')
-rw-r--r--tensorflow/core/kernels/cwise_op_expm1.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/tensorflow/core/kernels/cwise_op_expm1.cc b/tensorflow/core/kernels/cwise_op_expm1.cc
new file mode 100644
index 0000000000..f1c53ca272
--- /dev/null
+++ b/tensorflow/core/kernels/cwise_op_expm1.cc
@@ -0,0 +1,24 @@
+/* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#include "tensorflow/core/kernels/cwise_ops_common.h"
+
+namespace tensorflow {
+REGISTER5(UnaryOp, CPU, "Expm1", functor::expm1, float, Eigen::half, double,
+ complex64, complex128);
+#if GOOGLE_CUDA
+REGISTER3(UnaryOp, GPU, "Expm1", functor::expm1, float, Eigen::half, double);
+#endif
+} // namespace tensorflow