aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-08-24 16:55:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-24 17:02:49 -0700
commit829b6691f905e17641840e83b3941cadcc7a2463 (patch)
tree53c78699974a02b575650c986ba27fdc4ff86cdc /tensorflow/core/ops
parent98884cf5cdba1008adb1820f7b02034d5950c561 (diff)
Deprecate C++ kernel for matrix exponential, which is now implemented as a python function.
PiperOrigin-RevId: 210180168
Diffstat (limited to 'tensorflow/core/ops')
-rw-r--r--tensorflow/core/ops/linalg_ops.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/core/ops/linalg_ops.cc b/tensorflow/core/ops/linalg_ops.cc
index f37f79ddbf..1d4d51a25d 100644
--- a/tensorflow/core/ops/linalg_ops.cc
+++ b/tensorflow/core/ops/linalg_ops.cc
@@ -235,6 +235,8 @@ REGISTER_OP("MatrixInverse")
.SetShapeFn(BatchUnchangedSquareShapeFn);
REGISTER_OP("MatrixExponential")
+ .Deprecated(
+ 27, "Use Python implementation tf.linalg.matrix_exponential instead.")
.Input("input: T")
.Output("output: T")
.Attr("T: {double, float, complex64, complex128}")