mirror of
https://github.com/zebrajr/tensorflow.git
synced 2026-01-15 12:15:41 +00:00
22 lines
882 B
Python
22 lines
882 B
Python
"""Loads the Flatbuffers library, used by TF Lite."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
|
|
|
|
_FLATBUFFERS_VERSION = "25.9.23"
|
|
|
|
# curl -L https://github.com/google/flatbuffers/archive/v<_FLATBUFFERS_VERSION>.tar.gz | shasum -a 256
|
|
_FLATBUFFERS_SHA256 = "9102253214dea6ae10c2ac966ea1ed2155d22202390b532d1dea64935c518ada"
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "flatbuffers",
|
|
strip_prefix = "flatbuffers-%s" % _FLATBUFFERS_VERSION,
|
|
sha256 = _FLATBUFFERS_SHA256,
|
|
urls = tf_mirror_urls("https://github.com/google/flatbuffers/archive/v%s.tar.gz" % _FLATBUFFERS_VERSION),
|
|
build_file = "//third_party/flatbuffers:flatbuffers.BUILD",
|
|
system_build_file = "//third_party/flatbuffers:BUILD.system",
|
|
link_files = {
|
|
"//third_party/flatbuffers:build_defs.bzl": "build_defs.bzl",
|
|
},
|
|
)
|