diff --git a/tensorflow/lite/g3doc/performance/hexagon_delegate.md b/tensorflow/lite/g3doc/performance/hexagon_delegate.md index 30d108d6990..309d3021f97 100644 --- a/tensorflow/lite/g3doc/performance/hexagon_delegate.md +++ b/tensorflow/lite/g3doc/performance/hexagon_delegate.md @@ -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.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: 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 interface library. Interface library is part of the AAR and fetched by bazel @@ -180,10 +181,12 @@ dependencies { “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.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: 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 interface library. Interface library is part of the AAR and fetched by bazel diff --git a/third_party/hexagon/workspace.bzl b/third_party/hexagon/workspace.bzl index 1a682f0e8ad..a22e2dbe87e 100644 --- a/third_party/hexagon/workspace.bzl +++ b/third_party/hexagon/workspace.bzl @@ -2,14 +2,14 @@ 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. def repo(): third_party_http_archive( name = "hexagon_nn", - sha256 = "a0c011f7795e1a09eb7355be295d6442718b8565cc0e3c58a91671dde2bc99fb", + sha256 = "2b0e29a061f389ad52054c12fcae38991b5f731d7a05770c7ac421433ed17cc2", 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", )