STT-tensorflow/third_party/mkl_dnn/BUILD
A. Unique TensorFlower 460e000de3 Internal change
PiperOrigin-RevId: 361090132
Change-Id: Ia8e3efb6e794d83c4ef506fccf830370ec6780d0
2021-03-05 00:36:27 -08:00

34 lines
681 B
Python

load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
package(
default_visibility = [
"//tensorflow:__subpackages__",
],
licenses = ["notice"],
)
exports_files(["LICENSE"])
config_setting(
name = "build_with_mkl_opensource",
define_values = {
"build_with_mkl": "true",
"build_with_mkl_opensource": "true",
},
visibility = ["//visibility:public"],
)
config_setting(
name = "build_with_mkldnn_openmp",
define_values = {
"build_with_mkl": "true",
"build_with_openmp": "true",
},
visibility = ["//visibility:public"],
)
bzl_library(
name = "build_defs_bzl",
srcs = ["build_defs.bzl"],
)