xref: /aosp_15_r20/external/tensorflow/third_party/ruy/workspace.bzl (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1"""Loads the ruy library, used by TensorFlow Lite."""
2
3load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
4
5def repo():
6    tf_http_archive(
7        name = "ruy",
8        # LINT.IfChange
9        sha256 = "dd6bf40322303cf8982f340e4139397c8fa350ff691d5254599cb21e0138fc65",
10        strip_prefix = "ruy-841ea4172ba904fe3536789497f9565f2ef64129",
11        urls = tf_mirror_urls("https://github.com/google/ruy/archive/841ea4172ba904fe3536789497f9565f2ef64129.zip"),
12        # LINT.ThenChange(//tensorflow/lite/tools/cmake/modules/ruy.cmake)
13        build_file = "//third_party/ruy:BUILD",
14    )
15