STT-tensorflow/third_party/ruy/workspace.bzl
Benoit Jacob a3fc5b10c0 Bump the references to github.com/google/ruy to commit 5bb02fbf90824c2eb6cd7418f766c593106a332b.
PiperOrigin-RevId: 323784071
Change-Id: I8ed4d6e4447193c0eff03395e75fe70b9b572cc1
2020-07-29 07:45:44 -07:00

16 lines
658 B
Python

"""Loads the ruy library, used by TensorFlow Lite."""
load("//third_party:repo.bzl", "third_party_http_archive")
def repo():
third_party_http_archive(
name = "ruy",
sha256 = "d8f9dc52c0a52c8470e2e0b60bc16cba91853d812846c075f7ed8404990b003d",
strip_prefix = "ruy-5bb02fbf90824c2eb6cd7418f766c593106a332b",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/ruy/archive/5bb02fbf90824c2eb6cd7418f766c593106a332b.zip",
"https://github.com/google/ruy/archive/5bb02fbf90824c2eb6cd7418f766c593106a332b.zip",
],
build_file = "//third_party/ruy:BUILD",
)