18 lines
739 B
Python
18 lines
739 B
Python
"""Loads the ruy library, used by TensorFlow Lite."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "ruy",
|
|
# LINT.IfChange
|
|
sha256 = "fa9a0b9041095817bc3533f7b125c3b4044570c0b3ee6c436d2d29dae001c06b",
|
|
strip_prefix = "ruy-e6c1b8dc8a8b00ee74e7268aac8b18d7260ab1ce",
|
|
urls = [
|
|
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/ruy/archive/e6c1b8dc8a8b00ee74e7268aac8b18d7260ab1ce.zip",
|
|
"https://github.com/google/ruy/archive/e6c1b8dc8a8b00ee74e7268aac8b18d7260ab1ce.zip",
|
|
],
|
|
# LINT.ThenChange(//tensorflow/lite/tools/cmake/modules/ruy.cmake)
|
|
build_file = "//third_party/ruy:BUILD",
|
|
)
|