Update gemmlowp hash as the commit history seems to have changed in the

repository.

PiperOrigin-RevId: 168343607
This commit is contained in:
Gunhan Gulsoy 2017-09-12 01:11:18 -07:00 committed by TensorFlower Gardener
parent c0a4c7ffc2
commit bc300318e7
2 changed files with 4 additions and 3 deletions

View File

@ -15,7 +15,7 @@
include (ExternalProject)
set(gemmlowp_URL http://github.com/google/gemmlowp/archive/010bb3e71a26ca1d0884a167081d092b43563996.tar.gz)
set(gemmlowp_HASH SHA256=0d7a44327e26b622ee08faaea10f8d10b439bcfda622f9c98be1c036bc645cad)
set(gemmlowp_HASH SHA256=861cc6d9d902861f54fd77e1ab79286477dcc559b2a283e75b9c22d37b61f6ae)
set(gemmlowp_BUILD ${CMAKE_CURRENT_BINARY_DIR}/gemmlowp/src/gemmlowp)
set(gemmlowp_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/gemmlowp/src/gemmlowp)

View File

@ -231,10 +231,11 @@ def tf_workspace(path_prefix="", tf_repo_name=""):
native.http_archive(
name = "gemmlowp",
urls = [
"http://mirror.bazel.build/github.com/google/gemmlowp/archive/010bb3e71a26ca1d0884a167081d092b43563996.tar.gz",
# TODO(gunan): reenable once mirror is updated.
# "http://mirror.bazel.build/github.com/google/gemmlowp/archive/010bb3e71a26ca1d0884a167081d092b43563996.tar.gz",
"https://github.com/google/gemmlowp/archive/010bb3e71a26ca1d0884a167081d092b43563996.tar.gz",
],
sha256 = "0d7a44327e26b622ee08faaea10f8d10b439bcfda622f9c98be1c036bc645cad",
sha256 = "861cc6d9d902861f54fd77e1ab79286477dcc559b2a283e75b9c22d37b61f6ae",
strip_prefix = "gemmlowp-010bb3e71a26ca1d0884a167081d092b43563996",
)