aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/default/build_config_root.bzl
blob: 23a7b9065a62adcbde87c14332d486262326f493 (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
# 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.

WITH_XLA_SUPPORT = False

def tf_cuda_tests_tags():
  return ["local"]

def tf_sycl_tests_tags():
  return ["local"]

def tf_additional_plugin_deps():
  deps = []
  if WITH_XLA_SUPPORT:
    deps.append("//tensorflow/compiler/jit")
  return deps

def tf_additional_xla_deps_py():
  return []

def tf_additional_license_deps():
  licenses = []
  if WITH_XLA_SUPPORT:
    licenses.append("@llvm//:LICENSE.TXT")
  return licenses