aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/eigen3/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/eigen3/BUILD')
-rw-r--r--third_party/eigen3/BUILD7
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/eigen3/BUILD b/third_party/eigen3/BUILD
index a921fa0228..13f62ebb77 100644
--- a/third_party/eigen3/BUILD
+++ b/third_party/eigen3/BUILD
@@ -11,6 +11,10 @@ licenses([
exports_files(["LICENSE"])
+# INTEL_MKL start
+load("//tensorflow:tensorflow.bzl", "if_mkl")
+# INTEL_MKL end
+
cc_library(
name = "eigen3",
hdrs = glob(["unsupported/Eigen/CXX11/src/FixedPoint/*.h"]) + [
@@ -25,7 +29,10 @@ cc_library(
"unsupported/Eigen/CXX11/Tensor",
"unsupported/Eigen/CXX11/FixedPoint",
],
+ # INTEL_MKL start
+ includes = if_mkl(["./mkl_include"]),
visibility = ["//visibility:public"],
+ # INTEL_MKL end
deps = [
"@eigen_archive//:eigen",
"@local_config_sycl//sycl:sycl",