1"""Loads the ruy library, used by TensorFlow Lite.""" 2 3load("//third_party:repo.bzl", "third_party_http_archive") 4 5def repo(): 6 third_party_http_archive( 7 name = "ruy", 8 sha256 = "28331222625e677be004e96da5e9a1cc9d65187d04d70d1ab2ca58445461ecbc", 9 strip_prefix = "ruy-4790797d11a81f96baf24f3731fd3ca44c2c5f8b", 10 urls = [ 11 "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/ruy/archive/4790797d11a81f96baf24f3731fd3ca44c2c5f8b.zip", 12 "https://github.com/google/ruy/archive/4790797d11a81f96baf24f3731fd3ca44c2c5f8b.zip", 13 ], 14 build_file = "//third_party/ruy:BUILD", 15 ) 16