Update XNNPACK and cpuinfo dependencies

PiperOrigin-RevId: 302469932
Change-Id: I3b40f89c61654431f30366387f858d2511b0c30a
This commit is contained in:
Marat Dukhan 2020-03-23 10:53:56 -07:00 committed by Lukas Geiger
parent 43b060e937
commit ebed0c71a0
3 changed files with 8 additions and 3030 deletions

View File

@ -148,11 +148,11 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
tf_http_archive(
name = "XNNPACK",
sha256 = "190e61e50af3497bb46b8d936bd2d2d551a9aeedb02ff66388918408a54e216a",
strip_prefix = "XNNPACK-b18783570f0643560be641b193367d3906955141",
sha256 = "77a4cea07169b4d67df456d50deffaa100e587192657c68ee4f2b7c12ba133d1",
strip_prefix = "XNNPACK-479e78c7f93a5764ffb221bdead3f290c7fd8ea3",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/XNNPACK/archive/b18783570f0643560be641b193367d3906955141.zip",
"https://github.com/google/XNNPACK/archive/b18783570f0643560be641b193367d3906955141.zip",
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/XNNPACK/archive/479e78c7f93a5764ffb221bdead3f290c7fd8ea3.zip",
"https://github.com/google/XNNPACK/archive/479e78c7f93a5764ffb221bdead3f290c7fd8ea3.zip",
],
)

File diff suppressed because it is too large Load Diff

View File

@ -2,20 +2,14 @@
load("//third_party:repo.bzl", "third_party_http_archive")
# Sanitize a dependency so that it works correctly from code that includes
# TensorFlow as a submodule.
def clean_dep(dep):
return str(Label(dep))
def repo():
third_party_http_archive(
name = "cpuinfo",
strip_prefix = "cpuinfo-d6c0f915ee737f961915c9d17f1679b6777af207",
sha256 = "146fc61c3cf63d7d88db963876929a4d373f621fb65568b895efa0857f467770",
strip_prefix = "cpuinfo-0cc563acb9baac39f2c1349bc42098c4a1da59e3",
sha256 = "80625d0b69a3d69b70c2236f30db2c542d0922ccf9bb51a61bc39c49fac91a35",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/pytorch/cpuinfo/archive/d6c0f915ee737f961915c9d17f1679b6777af207.tar.gz",
"https://github.com/pytorch/cpuinfo/archive/d6c0f915ee737f961915c9d17f1679b6777af207.tar.gz",
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/pytorch/cpuinfo/archive/0cc563acb9baac39f2c1349bc42098c4a1da59e3.tar.gz",
"https://github.com/pytorch/cpuinfo/archive/0cc563acb9baac39f2c1349bc42098c4a1da59e3.tar.gz",
],
build_file = "//third_party/cpuinfo:BUILD.bazel",
patch_file = clean_dep("//third_party/cpuinfo:cpuinfo.patch"),
)