Update hexagon NN to use v1.20.0

PiperOrigin-RevId: 322660166
Change-Id: Ia941abdda0f4d99b2be8d072a8da206d72c2661d
This commit is contained in:
Karim Nosir 2020-07-22 14:48:34 -07:00 committed by TensorFlower Gardener
parent a0c12335d3
commit be699e9701
2 changed files with 8 additions and 5 deletions
tensorflow/lite/g3doc/performance
third_party/hexagon

View File

@ -75,10 +75,11 @@ dependencies {
* [v1.10.3](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_1_10_3_1.run) * [v1.10.3](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_1_10_3_1.run)
* [v1.14](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.14.run) * [v1.14](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.14.run)
* [v1.17](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.17.0.0.run) * [v1.17](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.17.0.0.run)
* [v1.20](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.20.0.0.run)
Note: You will need to accept the license agreement. Note: You will need to accept the license agreement.
Note: As of 04/28/2020 you should use v1.17. Note: As of 07/22/2020 you should use v1.20.
Note: You must use the hexagon_nn libraries with the compatible version of Note: You must use the hexagon_nn libraries with the compatible version of
interface library. Interface library is part of the AAR and fetched by bazel interface library. Interface library is part of the AAR and fetched by bazel
@ -180,10 +181,12 @@ dependencies {
“libhexagon_nn_skel_v66.so” “libhexagon_nn_skel_v66.so”
* [v1.10.3](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_1_10_3_1.run) * [v1.10.3](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_1_10_3_1.run)
* [v1.14](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.14.run) * [v1.14](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.14.run)
* [v1.17](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.17.0.0.run)
* [v1.20](https://storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_skel_v1.20.0.0.run)
Note: You will need to accept the license agreement. Note: You will need to accept the license agreement.
Note: As of 03/03/2020 you should use v1.14. Note: As of 07/22/2020 you should use v1.20.
Note: You must use the hexagon_nn libraries with the compatible version of Note: You must use the hexagon_nn libraries with the compatible version of
interface library. Interface library is part of the AAR and fetched by bazel interface library. Interface library is part of the AAR and fetched by bazel

View File

@ -2,14 +2,14 @@
load("//third_party:repo.bzl", "third_party_http_archive") load("//third_party:repo.bzl", "third_party_http_archive")
# Note: Use libhexagon_nn_skel version 1.17 Only with the current version. # Note: Use libhexagon_nn_skel version 1.20 Only with the current version.
# This comment will be updated with compatible version. # This comment will be updated with compatible version.
def repo(): def repo():
third_party_http_archive( third_party_http_archive(
name = "hexagon_nn", name = "hexagon_nn",
sha256 = "a0c011f7795e1a09eb7355be295d6442718b8565cc0e3c58a91671dde2bc99fb", sha256 = "2b0e29a061f389ad52054c12fcae38991b5f731d7a05770c7ac421433ed17cc2",
urls = [ urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_headers_v1.17.0.0.tgz", "https://storage.googleapis.com/mirror.tensorflow.org/storage.cloud.google.com/download.tensorflow.org/tflite/hexagon_nn_headers_v1.20.0.0.tgz",
], ],
build_file = "//third_party/hexagon:BUILD", build_file = "//third_party/hexagon:BUILD",
) )