• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2
3package(
4    default_visibility = [
5        "//tensorflow:__subpackages__",
6    ],
7    licenses = ["notice"],
8)
9
10exports_files(["LICENSE"])
11
12config_setting(
13    name = "build_with_mkl_opensource",
14    define_values = {
15        "build_with_mkl": "true",
16        "build_with_mkl_opensource": "true",
17    },
18    visibility = ["//visibility:public"],
19)
20
21config_setting(
22    name = "build_with_mkldnn_threadpool",
23    define_values = {
24        "build_with_mkl": "true",
25        "build_with_mkl_opensource": "true",
26        "build_with_mkldnn_threadpool": "true",
27    },
28    visibility = ["//visibility:public"],
29)
30
31bzl_library(
32    name = "build_defs_bzl",
33    srcs = ["build_defs.bzl"],
34)
35