1"""loads the hwloc library, used by TF.""" 2 3load("//third_party:repo.bzl", "third_party_http_archive") 4 5def repo(): 6 third_party_http_archive( 7 name = "hwloc", 8 urls = [ 9 "https://storage.googleapis.com/mirror.tensorflow.org/download.open-mpi.org/release/hwloc/v2.0/hwloc-2.0.3.tar.gz", 10 "https://download.open-mpi.org/release/hwloc/v2.0/hwloc-2.0.3.tar.gz", 11 ], 12 sha256 = "64def246aaa5b3a6e411ce10932a22e2146c3031b735c8f94739534f06ad071c", 13 strip_prefix = "hwloc-2.0.3", 14 build_file = "//third_party/hwloc:BUILD.bazel", 15 system_build_file = "//third_party/hwloc:BUILD.system", 16 ) 17