Update CUB to 1.7.3

PiperOrigin-RevId: 167339917
This commit is contained in:
A. Unique TensorFlower 2017-09-01 16:31:36 -07:00 committed by TensorFlower Gardener
parent e09619b923
commit b541b48122
2 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@
# ==============================================================================
include (ExternalProject)
set(cub_URL http://mirror.bazel.build/github.com/NVlabs/cub/archive/69ceda618313df8e9cac6659d607b08949455d14.tar.gz)
set(cub_HASH SHA256=87e856522c283b8ea887c3b61d7d5b252d2dd74abac4f1d756d776e721223e82)
set(cub_URL http://mirror.bazel.build/github.com/NVlabs/cub/archive/1.7.3.zip)
set(cub_HASH SHA256=b7ead9e291d34ffa8074243541c1380d63be63f88de23de8ee548db573b72ebe)
set(cub_BUILD ${CMAKE_CURRENT_BINARY_DIR}/cub/src/cub)
set(cub_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/cub/src/cub)
set(cub_ARCHIVE_DIR ${CMAKE_CURRENT_BINARY_DIR}/external/cub_archive)

View File

@ -683,11 +683,11 @@ def tf_workspace(path_prefix="", tf_repo_name=""):
native.new_http_archive(
name = "cub_archive",
urls = [
"http://mirror.bazel.build/github.com/NVlabs/cub/archive/69ceda618313df8e9cac6659d607b08949455d14.tar.gz",
"https://github.com/NVlabs/cub/archive/69ceda618313df8e9cac6659d607b08949455d14.tar.gz",
"http://mirror.bazel.build/github.com/NVlabs/cub/archive/1.7.3.zip",
"https://github.com/NVlabs/cub/archive/1.7.3.zip",
],
sha256 = "87e856522c283b8ea887c3b61d7d5b252d2dd74abac4f1d756d776e721223e82",
strip_prefix = "cub-69ceda618313df8e9cac6659d607b08949455d14",
sha256 = "b7ead9e291d34ffa8074243541c1380d63be63f88de23de8ee548db573b72ebe",
strip_prefix = "cub-1.7.3",
build_file = str(Label("//third_party:cub.BUILD")),
)