From da1b1d28faca9aa65e832b9bbada8d509ea2df7d Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Tue, 7 Nov 2017 08:29:50 -0800 Subject: Added CPU matrix exponential op to TensorFlow. Uses Eigen's unsupported implementation. PiperOrigin-RevId: 174858966 --- third_party/eigen3/BUILD | 1 + third_party/eigen3/unsupported/Eigen/MatrixFunctions | 1 + 2 files changed, 2 insertions(+) create mode 100644 third_party/eigen3/unsupported/Eigen/MatrixFunctions (limited to 'third_party/eigen3') 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" -- cgit v1.2.3