diff options
author | Mahmoud Abuzaina <mahmoud.abuzaina@intel.com> | 2018-07-10 17:35:27 -0700 |
---|---|---|
committer | Mahmoud Abuzaina <mahmoud.abuzaina@intel.com> | 2018-07-10 17:35:27 -0700 |
commit | d3b4945e6de5343bcf7c37507e9a1d1ff8d9e496 (patch) | |
tree | b9adb495224df8f18be7d6d1fe6616e2ad754334 /third_party/mkl_dnn | |
parent | 64117da0c36f0697467ce6d56a7be6837da24d2f (diff) |
Added missing file
Diffstat (limited to 'third_party/mkl_dnn')
-rw-r--r-- | third_party/mkl_dnn/build_defs.bzl | 13 |
1 files changed, 13 insertions, 0 deletions
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 |