aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-11-07 08:29:50 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-11-07 08:34:04 -0800
commitda1b1d28faca9aa65e832b9bbada8d509ea2df7d (patch)
tree95e2916651146edbd3c800fca17114f42628ec79 /third_party
parentd71abc570b15451232bf7582c9173c56651aed1b (diff)
Added CPU matrix exponential op to TensorFlow.
Uses Eigen's unsupported implementation. PiperOrigin-RevId: 174858966
Diffstat (limited to 'third_party')
-rw-r--r--third_party/eigen.BUILD1
-rw-r--r--third_party/eigen3/BUILD1
-rw-r--r--third_party/eigen3/unsupported/Eigen/MatrixFunctions1
3 files changed, 3 insertions, 0 deletions
diff --git a/third_party/eigen.BUILD b/third_party/eigen.BUILD
index 0157cbcddf..07bb6645eb 100644
--- a/third_party/eigen.BUILD
+++ b/third_party/eigen.BUILD
@@ -36,6 +36,7 @@ EIGEN_FILES = [
"unsupported/Eigen/src/KroneckerProduct/**",
"unsupported/Eigen/MatrixFunctions",
"unsupported/Eigen/SpecialFunctions",
+ "unsupported/Eigen/src/MatrixFunctions/**",
"unsupported/Eigen/src/SpecialFunctions/**",
]
diff --git a/third_party/eigen3/BUILD b/third_party/eigen3/BUILD
index ad87477b7a..f5f3418527 100644
--- a/third_party/eigen3/BUILD
+++ b/third_party/eigen3/BUILD
@@ -26,6 +26,7 @@ cc_library(
"Eigen/Eigenvalues",
"Eigen/QR",
"Eigen/SVD",
+ "unsupported/Eigen/MatrixFunctions",
"unsupported/Eigen/SpecialFunctions",
"unsupported/Eigen/CXX11/ThreadPool",
"unsupported/Eigen/CXX11/Tensor",
diff --git a/third_party/eigen3/unsupported/Eigen/MatrixFunctions b/third_party/eigen3/unsupported/Eigen/MatrixFunctions
new file mode 100644
index 0000000000..314b325f8c
--- /dev/null
+++ b/third_party/eigen3/unsupported/Eigen/MatrixFunctions
@@ -0,0 +1 @@
+#include "unsupported/Eigen/MatrixFunctions"