From d3b4945e6de5343bcf7c37507e9a1d1ff8d9e496 Mon Sep 17 00:00:00 2001 From: Mahmoud Abuzaina Date: Tue, 10 Jul 2018 17:35:27 -0700 Subject: Added missing file --- third_party/mkl_dnn/build_defs.bzl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 third_party/mkl_dnn/build_defs.bzl (limited to 'third_party/mkl_dnn') diff --git a/third_party/mkl_dnn/build_defs.bzl b/third_party/mkl_dnn/build_defs.bzl new file mode 100644 index 0000000000..108d82e683 --- /dev/null +++ b/third_party/mkl_dnn/build_defs.bzl @@ -0,0 +1,13 @@ +def if_mkl_open_source_only(if_true, if_false = []): + """Shorthand for select()'ing on whether we're building with + MKL-DNN open source lib only, without depending on MKL binary form. + + Returns a select statement which evaluates to if_true if we're building + with MKL-DNN open source lib only. Otherwise, + the select statement evaluates to if_false. + + """ + return select({ + str(Label("//third_party/mkl_dnn:using_mkl_dnn_only")): if_true, + "//conditions:default": if_false + }) \ No newline at end of file -- cgit v1.2.3