aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/libxsmm.BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-05-18 19:03:05 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-05-18 19:06:51 -0700
commitc7bf181553b9bb1652b09d31591371f8446da117 (patch)
tree61bbe36bb4844336fcc328fe0e8ad1adfab15dd9 /third_party/libxsmm.BUILD
parent1318e59cc38f6fa225ba5826aae437c3b055b198 (diff)
Upgraded LIBXSMM to 1.8.1.
PiperOrigin-RevId: 156508163
Diffstat (limited to 'third_party/libxsmm.BUILD')
-rw-r--r--third_party/libxsmm.BUILD22
1 files changed, 14 insertions, 8 deletions
diff --git a/third_party/libxsmm.BUILD b/third_party/libxsmm.BUILD
index 53a814b4b8..f9f1ea1085 100644
--- a/third_party/libxsmm.BUILD
+++ b/third_party/libxsmm.BUILD
@@ -11,18 +11,19 @@ exports_files(["LICENSE"])
libxsmm_interface_arguments = "0 1"
# Arguments to ./scripts/libxsmm_config.py, see that file for detailed description.
-# ilp64: 0 (no)
-# big: 1 (yes)
-# offload: 0 (no)
+# ilp64: no
+# big: no
+# offload: no
# alignment [b]
-# prefetch: -1 (auto)
-# threshold: 0 (auto)
+# prefetch: 1 (auto)
+# threshold: fallback to BLAS if n*m*k above this
# synchronize: yes
-# jit: 1 (yes)
-# flags: 0 (none)
+# jit: yes
+# flags
# alpha = 1
# beta = 1
-libxsmm_config_arguments = "0 1 0 64 -1 0 1 1 0 1 1"
+# gemm = 2
+libxsmm_config_arguments = "0 0 0 64 1 0 1 1 0 1 1 2"
# Arguments to ./scripts/libxsmm_dispatch.py, see that file for detailed description.
# (dummy argument)
@@ -66,6 +67,8 @@ cc_library(
"src/libxsmm_dnn_convolution_winograd_weight_update.c",
"src/libxsmm_dnn_handle.c",
"src/libxsmm_dump.c",
+ "src/libxsmm_ext_gemm.c",
+ "src/libxsmm_ext_trans.c",
"src/libxsmm_fsspmdm.c",
"src/libxsmm_gemm.c",
"src/libxsmm_main.c",
@@ -92,6 +95,9 @@ cc_library(
"include/libxsmm_sync.h",
"include/libxsmm_timer.h",
"include/libxsmm_typedefs.h",
+ # Source files #included internally:
+ "src/libxsmm_gemm_diff.c",
+ "src/libxsmm_hash.c",
# Generated:
"include/libxsmm.h",
"include/libxsmm_config.h",