aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorflow.bzl
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2018-09-17 15:11:22 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-17 15:15:50 -0700
commitbb30dfce198341b2ec80d0aa22b49eaa5eac533b (patch)
tree498f8ecd7751ebcfaf966993efa40e3ccebbae65 /tensorflow/tensorflow.bzl
parent55581a5bed7108c2d39ab603db8c916b6d624648 (diff)
Add benchmarks comparing Mkl vs Default Conv2D ops.
PiperOrigin-RevId: 213346439
Diffstat (limited to 'tensorflow/tensorflow.bzl')
-rw-r--r--tensorflow/tensorflow.bzl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/tensorflow.bzl b/tensorflow/tensorflow.bzl
index 16f7b217b4..689679c838 100644
--- a/tensorflow/tensorflow.bzl
+++ b/tensorflow/tensorflow.bzl
@@ -1216,9 +1216,11 @@ def tf_mkl_kernel_library(
if prefix:
srcs = srcs + native.glob(
[prefix + "*.cc"],
+ exclude = [prefix + "*test*"],
)
hdrs = hdrs + native.glob(
[prefix + "*.h"],
+ exclude = [prefix + "*test*"],
)
# -fno-exceptions in nocopts breaks compilation if header modules are enabled.