aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/default/build_config_root.bzl
blob: 79f97c12347b8cddc480caebfcbadf9bbaf635ab (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
# 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 ["local"]

def tf_sycl_tests_tags():
  return ["local"]

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": [],
  })