chore: import upstream snapshot with attribution
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:14:16 +08:00
commit 8a852e4b4e
36502 changed files with 9277225 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# This empty BUILD file is required to make Bazel treat this directory as a package.
# copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
+13
View File
@@ -0,0 +1,13 @@
diff --git a/BUILD b/BUILD
index ef49b2d..1710abc 100644
--- a/BUILD
+++ b/BUILD
@@ -157,1 +155,5 @@ cc_library(
+ "hwy/highway.h", # public
+ "hwy/foreach_target.h", # public
],
+ include_prefix = "third_party/highway",
+ includes = ["."],
@@ -169,2 +173,0 @@ cc_library(
- "hwy/highway.h", # public
- "hwy/foreach_target.h", # public
+12
View File
@@ -0,0 +1,12 @@
"""Point to the Highway repo on GitHub."""
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
def repo():
tf_http_archive(
name = "com_google_highway",
strip_prefix = "highway-1.3.0",
sha256 = "07b3c1ba2c1096878a85a31a5b9b3757427af963b1141ca904db2f9f4afe0bc2",
urls = tf_mirror_urls("https://github.com/google/highway/archive/refs/tags/1.3.0.tar.gz"),
patch_file = ["//third_party/com_google_highway:build.patch"],
)