aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/default/build_config_root.bzl
blob: e1f123a0a01ca46dd24ca0e369b255fb675891a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Lower-level functionality for build config.
# The functions in this file might be referred by tensorflow.bzl. They have to
# be separate to avoid cyclic references.

def tf_cuda_tests_tags():
  return ["requires-gpu"]

def tf_sycl_tests_tags():
  return ["requires-gpu"]

def tf_additional_plugin_deps():
  return select({
      "//tensorflow:with_xla_support": ["//tensorflow/compiler/jit"],
      "//conditions:default": [],
  })

def tf_additional_xla_deps_py():
  return []

def tf_additional_license_deps():
  return select({
      "//tensorflow:with_xla_support": ["@llvm//:LICENSE.TXT"],
      "//conditions:default": [],
  })

def tf_additional_verbs_deps():
  return select({
      "//tensorflow:with_verbs_support": [
          "//tensorflow/contrib/verbs:verbs_server_lib",
          "//tensorflow/contrib/verbs:grpc_verbs_client",
      ],
      "//conditions:default": [],
  })

def tf_additional_mpi_deps():
  return select({
      "//tensorflow:with_mpi_support": [
          "//tensorflow/contrib/mpi:mpi_server_lib",
      ],
      "//conditions:default": [],
  })