Bump the ruy repository reference, getting in particular @lissyx's fix in google/ruy#69, and enabling dotprod instructions outside of Linux.

PiperOrigin-RevId: 314431523
Change-Id: I7c4ba417c45363bf735d6d00d88f88198b89be18
This commit is contained in:
Zhenyu Tan 2020-06-02 16:55:17 -07:00 committed by TensorFlower Gardener
parent 206dc37a33
commit cfd10f8b35
4 changed files with 8 additions and 10 deletions

View File

@ -56,8 +56,8 @@ SIFIVE_FE310_LIB_MD5 := "06ee24c4956f8e21670ab3395861fe64"
KISSFFT_URL="https://github.com/mborgerding/kissfft/archive/v130.zip" KISSFFT_URL="https://github.com/mborgerding/kissfft/archive/v130.zip"
KISSFFT_MD5="438ba1fef5783cc5f5f201395cc477ca" KISSFFT_MD5="438ba1fef5783cc5f5f201395cc477ca"
RUY_URL="https://github.com/google/ruy/archive/1a8b7eabd5039cd1423b3e22e6d7241d261576dc.zip" RUY_URL="https://github.com/google/ruy/archive/1b313682ef8b8fc8ed08719c610d1c3503b016bf.zip"
RUY_MD5="a5d47341f02dcef357fe072e6de5818d" RUY_MD5="2d54f058f8f7120dfc1ecee79dbf259e"
CIFAR10_DATASET_URL="https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz" CIFAR10_DATASET_URL="https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz"
CIFAR10_DATASET_MD5="c32a1d4ab5d03f1284b67883e8d87530" CIFAR10_DATASET_MD5="c32a1d4ab5d03f1284b67883e8d87530"

View File

@ -37,8 +37,8 @@ EIGEN_URL="$(grep -o 'https.*gitlab.com/libeigen/eigen/-/archive/.*tar\.gz' "${B
EIGEN_SHA="$(eval echo $(grep '# SHARED_EIGEN_SHA' "${BZL_FILE_PATH}" | grep -o '\".*\"'))" EIGEN_SHA="$(eval echo $(grep '# SHARED_EIGEN_SHA' "${BZL_FILE_PATH}" | grep -o '\".*\"'))"
GEMMLOWP_URL="$(grep -o 'https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/gemmlowp/.*zip' "${BZL_FILE_PATH}" | head -n1)" GEMMLOWP_URL="$(grep -o 'https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/gemmlowp/.*zip' "${BZL_FILE_PATH}" | head -n1)"
GEMMLOWP_SHA="$(eval echo $(grep '# SHARED_GEMMLOWP_SHA' "${BZL_FILE_PATH}" | grep -o '\".*\"'))" GEMMLOWP_SHA="$(eval echo $(grep '# SHARED_GEMMLOWP_SHA' "${BZL_FILE_PATH}" | grep -o '\".*\"'))"
RUY_URL="https://github.com/google/ruy/archive/1a8b7eabd5039cd1423b3e22e6d7241d261576dc.zip" RUY_URL="https://github.com/google/ruy/archive/1b313682ef8b8fc8ed08719c610d1c3503b016bf.zip"
RUY_SHA="a0efbc5190f59b39a3ac3fab8bb95e405fd0090836f84412f230a5e168ebf4fb" RUY_SHA="b21524de00c63b3d5683b42557f78452e791cf77fddb2e63f9bcba1f7bd99093"
GOOGLETEST_URL="https://github.com/google/googletest/archive/release-1.8.0.tar.gz" GOOGLETEST_URL="https://github.com/google/googletest/archive/release-1.8.0.tar.gz"
GOOGLETEST_SHA="58a6f4277ca2bc8565222b3bbd58a177609e9c488e8a72649359ba51450db7d8" GOOGLETEST_SHA="58a6f4277ca2bc8565222b3bbd58a177609e9c488e8a72649359ba51450db7d8"
ABSL_URL="$(grep -o 'https://github.com/abseil/abseil-cpp/.*tar.gz' "${BZL_FILE_PATH}" | head -n1)" ABSL_URL="$(grep -o 'https://github.com/abseil/abseil-cpp/.*tar.gz' "${BZL_FILE_PATH}" | head -n1)"

View File

@ -214,8 +214,6 @@ filegroup(
"@sobol_data//:LICENSE", "@sobol_data//:LICENSE",
"@termcolor_archive//:COPYING.txt", "@termcolor_archive//:COPYING.txt",
"@zlib//:zlib.h", "@zlib//:zlib.h",
"@clog//:LICENSE",
"@cpuinfo//:LICENSE",
] + select({ ] + select({
"//tensorflow:android": [], "//tensorflow:android": [],
"//tensorflow:ios": [], "//tensorflow:ios": [],

View File

@ -5,11 +5,11 @@ load("//third_party:repo.bzl", "third_party_http_archive")
def repo(): def repo():
third_party_http_archive( third_party_http_archive(
name = "ruy", name = "ruy",
sha256 = "a0efbc5190f59b39a3ac3fab8bb95e405fd0090836f84412f230a5e168ebf4fb", sha256 = "b21524de00c63b3d5683b42557f78452e791cf77fddb2e63f9bcba1f7bd99093",
strip_prefix = "ruy-1a8b7eabd5039cd1423b3e22e6d7241d261576dc", strip_prefix = "ruy-1b313682ef8b8fc8ed08719c610d1c3503b016bf",
urls = [ urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/ruy/archive/1a8b7eabd5039cd1423b3e22e6d7241d261576dc.zip", "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/ruy/archive/1b313682ef8b8fc8ed08719c610d1c3503b016bf.zip",
"https://github.com/google/ruy/archive/1a8b7eabd5039cd1423b3e22e6d7241d261576dc.zip", "https://github.com/google/ruy/archive/1b313682ef8b8fc8ed08719c610d1c3503b016bf.zip",
], ],
build_file = "//third_party/ruy:BUILD", build_file = "//third_party/ruy:BUILD",
) )