mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
Updated based on PR feedback.
This commit is contained in:
parent
1149ad359f
commit
93e950c308
|
|
@ -78,4 +78,4 @@ new_http_archive(
|
||||||
"http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip",
|
"http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip",
|
||||||
"http://download.tensorflow.org/models/speech_commands_v0.01.zip",
|
"http://download.tensorflow.org/models/speech_commands_v0.01.zip",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ load(
|
||||||
"//tensorflow/python/tools/api/generator:api_gen.bzl",
|
"//tensorflow/python/tools/api/generator:api_gen.bzl",
|
||||||
"gen_api_init_files", # @unused
|
"gen_api_init_files", # @unused
|
||||||
)
|
)
|
||||||
|
load("//third_party/ngraph:build_defs.bzl", "if_ngraph")
|
||||||
|
|
||||||
# Config setting used when building for products
|
# Config setting used when building for products
|
||||||
# which requires restricted licenses to be avoided.
|
# which requires restricted licenses to be avoided.
|
||||||
|
|
@ -441,8 +442,6 @@ load(
|
||||||
"if_mkl",
|
"if_mkl",
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//third_party/ngraph:build_defs.bzl", "if_ngraph")
|
|
||||||
|
|
||||||
filegroup(
|
filegroup(
|
||||||
name = "intel_binary_blob",
|
name = "intel_binary_blob",
|
||||||
data = if_mkl(
|
data = if_mkl(
|
||||||
|
|
|
||||||
|
|
@ -2523,7 +2523,7 @@ tf_cuda_library(
|
||||||
"//third_party/mkl:intel_binary_blob",
|
"//third_party/mkl:intel_binary_blob",
|
||||||
"@mkl_dnn",
|
"@mkl_dnn",
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -708,4 +708,3 @@ def tf_additional_binary_deps():
|
||||||
"//third_party/mkl:intel_binary_blob",
|
"//third_party/mkl:intel_binary_blob",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -3809,7 +3809,7 @@ tf_py_wrap_cc(
|
||||||
tf_additional_plugin_deps() +
|
tf_additional_plugin_deps() +
|
||||||
tf_additional_verbs_deps() +
|
tf_additional_verbs_deps() +
|
||||||
tf_additional_mpi_deps() +
|
tf_additional_mpi_deps() +
|
||||||
tf_additional_gdr_deps())+
|
tf_additional_gdr_deps()) +
|
||||||
if_ngraph(["@ngraph_tf//:ngraph_tf"])
|
if_ngraph(["@ngraph_tf//:ngraph_tf"])
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ load(
|
||||||
"//third_party/mkl_dnn:build_defs.bzl",
|
"//third_party/mkl_dnn:build_defs.bzl",
|
||||||
"if_mkl_open_source_only",
|
"if_mkl_open_source_only",
|
||||||
)
|
)
|
||||||
|
|
||||||
load(
|
load(
|
||||||
"//third_party/ngraph:build_defs.bzl",
|
"//third_party/ngraph:build_defs.bzl",
|
||||||
"if_ngraph",
|
"if_ngraph",
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ load("//third_party:nccl/nccl_configure.bzl", "nccl_configure")
|
||||||
load("//third_party/mkl:build_defs.bzl", "mkl_repository")
|
load("//third_party/mkl:build_defs.bzl", "mkl_repository")
|
||||||
load("//third_party/git:git_configure.bzl", "git_configure")
|
load("//third_party/git:git_configure.bzl", "git_configure")
|
||||||
load("//third_party/py:python_configure.bzl", "python_configure")
|
load("//third_party/py:python_configure.bzl", "python_configure")
|
||||||
|
|
||||||
load("//third_party/sycl:sycl_configure.bzl", "sycl_configure")
|
load("//third_party/sycl:sycl_configure.bzl", "sycl_configure")
|
||||||
load("//third_party/systemlibs:syslibs_configure.bzl", "syslibs_configure")
|
load("//third_party/systemlibs:syslibs_configure.bzl", "syslibs_configure")
|
||||||
load("//third_party/toolchains/clang6:repo.bzl", "clang6_configure")
|
load("//third_party/toolchains/clang6:repo.bzl", "clang6_configure")
|
||||||
|
|
|
||||||
1
third_party/ngraph/ngraph_tf.BUILD
vendored
1
third_party/ngraph/ngraph_tf.BUILD
vendored
|
|
@ -68,6 +68,7 @@ cc_library(
|
||||||
"-I external/ngraph/src",
|
"-I external/ngraph/src",
|
||||||
"-D NGRAPH_EMBEDDED_IN_TENSORFLOW=1",
|
"-D NGRAPH_EMBEDDED_IN_TENSORFLOW=1",
|
||||||
],
|
],
|
||||||
|
alwayslink=1,
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user