aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/eigen.BUILD
diff options
context:
space:
mode:
authorGravatar Justine Tunney <jart@google.com>2016-12-29 00:24:58 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-29 00:51:20 -0800
commite28db9fced14d1ae16b20773544f57e382b9983e (patch)
tree84126c51638f04f7098c1f4181b88f6364fa4463 /third_party/eigen.BUILD
parenta1a3b0c6c3abe0df0c8e017d9f134db4731484b9 (diff)
Move most foo.BUILD files into third_party
This frees up space on the TensorFlow GitHub home page! Change: 143161497
Diffstat (limited to 'third_party/eigen.BUILD')
-rw-r--r--third_party/eigen.BUILD70
1 files changed, 70 insertions, 0 deletions
diff --git a/third_party/eigen.BUILD b/third_party/eigen.BUILD
new file mode 100644
index 0000000000..dc6de7bbda
--- /dev/null
+++ b/third_party/eigen.BUILD
@@ -0,0 +1,70 @@
+# Description:
+# Eigen is a C++ template library for linear algebra: vectors,
+# matrices, and related algorithms.
+
+licenses([
+ # Note: Eigen is an MPL2 library that includes GPL v3 and LGPL v2.1+ code.
+ # We've taken special care to not reference any restricted code.
+ "reciprocal", # MPL2
+ "notice", # Portions BSD
+])
+
+exports_files(["COPYING.MPL2"])
+
+# License-restricted (i.e. not reciprocal or notice) files inside Eigen/...
+EIGEN_RESTRICTED_FILES = [
+ "Eigen/src/OrderingMethods/Amd.h",
+ "Eigen/src/SparseCholesky/**",
+]
+
+# Notable transitive dependencies of restricted files inside Eigen/...
+EIGEN_RESTRICTED_DEPS = [
+ "Eigen/Eigen",
+ "Eigen/IterativeLinearSolvers",
+ "Eigen/MetisSupport",
+ "Eigen/Sparse",
+ "Eigen/SparseCholesky",
+ "Eigen/SparseLU",
+]
+
+# Note: unsupported/Eigen is unsupported and might go away at any time.
+EIGEN_FILES = [
+ "Eigen/**",
+ "unsupported/Eigen/CXX11/**",
+ "unsupported/Eigen/FFT",
+ "unsupported/Eigen/KroneckerProduct",
+ "unsupported/Eigen/src/FFT/**",
+ "unsupported/Eigen/src/KroneckerProduct/**",
+ "unsupported/Eigen/MatrixFunctions",
+ "unsupported/Eigen/SpecialFunctions",
+ "unsupported/Eigen/src/SpecialFunctions/**",
+]
+
+# List of files picked up by glob but actually part of another target.
+EIGEN_EXCLUDE_FILES = [
+ "Eigen/src/Core/arch/AVX/PacketMathGoogleTest.cc",
+]
+
+# Files known to be under MPL2 license.
+EIGEN_MPL2_HEADER_FILES = glob(
+ EIGEN_FILES,
+ exclude = EIGEN_EXCLUDE_FILES +
+ EIGEN_RESTRICTED_FILES +
+ EIGEN_RESTRICTED_DEPS + [
+ # Guarantees any file missed by excludes above will not compile.
+ "Eigen/src/Core/util/NonMPL2.h",
+ "Eigen/**/CMakeLists.txt",
+ ],
+)
+
+cc_library(
+ name = "eigen",
+ hdrs = EIGEN_MPL2_HEADER_FILES,
+ defines = [
+ # This define (mostly) guarantees we don't link any problematic
+ # code. We use it, but we do not rely on it, as evidenced above.
+ "EIGEN_MPL2_ONLY",
+ ],
+ includes = ["."],
+ visibility = ["//visibility:public"],
+)