From 2c133de38ea8ac0493265fe3bea267ec28ba8ecb Mon Sep 17 00:00:00 2001 From: Mahmoud Abuzaina Date: Thu, 10 May 2018 11:37:19 -0700 Subject: [PATCH] Fixing util_cuda_kernel_helper_test_gpu when building with MKL enabled (#19185) --- tensorflow/core/BUILD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD index 4b86d6e..277f27f 100644 --- a/tensorflow/core/BUILD +++ b/tensorflow/core/BUILD @@ -3402,7 +3402,11 @@ tf_cuda_only_cc_test( ":test", ":test_main", "//third_party/eigen3", - ], + ] + if_mkl( + [ + "//third_party/mkl:intel_binary_blob", + ], + ), ) tf_cc_test_gpu( -- 2.7.4