tensorflow/third_party/sobol_data/workspace.bzl
Itai Zukerman 8fa1dfaa38 BUILD.bazel files in //third_party/name were by convention copied to the
root of the 3P repository.  But BUILD.bazel was also being interpreted by
bazel as the BUILD file for the //third_party/name folder, which is wrong.

This change renames those files to name.BUILD, a convention already being
used by some packages.

PiperOrigin-RevId: 409278565
Change-Id: Ib99c3474ec0b20d04cdb9d828f68c8303caec5fe
2021-11-11 17:08:47 -08:00

13 lines
543 B
Python

"""Loads the sobol_data library, used by TF."""
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
def repo():
tf_http_archive(
name = "sobol_data",
urls = tf_mirror_urls("https://github.com/joe-kuo/sobol_data/archive/835a7d7b1ee3bc83e575e302a985c66ec4b65249.tar.gz"),
sha256 = "583d7b975e506c076fc579d9139530596906b9195b203d42361417e9aad79b73",
strip_prefix = "sobol_data-835a7d7b1ee3bc83e575e302a985c66ec4b65249",
build_file = "//third_party/sobol_data:sobol_data.BUILD",
)