tensorflow/third_party/hexagon/workspace.bzl
Jeremy Meredith 78e67a0e1c Renaming a third party build file (hexagon) in accordance with convention.
Leaving an empty BUILD in its place so the directory is still recognized as a package.

PiperOrigin-RevId: 471557906
2022-09-01 09:58:40 -07:00

18 lines
925 B
Python

"""Loads the Hexagon NN Header files library, used by TF Lite."""
load("//third_party:repo.bzl", "tf_http_archive")
# Note: Use libhexagon_nn_skel version 1.20.0.1 Only with the current version.
# This comment will be updated with compatible version.
def repo():
tf_http_archive(
name = "hexagon_nn",
sha256 = "f577b4c150b72e11e9dfb3f9d14f9772ba8fe460f7d65c84a7327ea9bef44d8e",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_headers_v1.20.0.9.tgz",
# Repeated to bypass 'at least two urls' check. TODO(karimnosseir): add original source of this package.
"https://storage.googleapis.com/mirror.tensorflow.org/storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_headers_v1.20.0.9.tgz",
],
build_file = "//third_party/hexagon:hexagon.BUILD",
)