STT-tensorflow/third_party/cpuinfo/workspace.bzl
Marat Dukhan 34bec1ebd4 Open-source XNNPACK delegate
PiperOrigin-RevId: 293253085
Change-Id: I361098e9b9cc064e2514134f6c6cd692e416320b
2020-02-04 16:26:38 -08:00

16 lines
688 B
Python

"""Loads the cpuinfo library, used by XNNPACK."""
load("//third_party:repo.bzl", "third_party_http_archive")
def repo():
third_party_http_archive(
name = "cpuinfo",
strip_prefix = "cpuinfo-e39a5790059b6b8274ed91f7b5b5b13641dff267",
sha256 = "e5caa8b7c58f1623eed88f4d5147e3753ff19cde821526bc9aa551b004f751fe",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/pytorch/cpuinfo/archive/e39a5790059b6b8274ed91f7b5b5b13641dff267.tar.gz",
"https://github.com/pytorch/cpuinfo/archive/e39a5790059b6b8274ed91f7b5b5b13641dff267.tar.gz",
],
build_file = "//third_party/cpuinfo:BUILD.bazel",
)