Update Eigen to:
011e0db31d
PiperOrigin-RevId: 337432623
Change-Id: I9af15c448ecffc58c60bf5f4cbb8951fecaf7224
This commit is contained in:
parent
bc7dcb1a5a
commit
44670ff103
@ -2721,10 +2721,10 @@ def reduce_max(input_tensor, axis=None, keepdims=False, name=None):
|
||||
tf.Tensor(-1, shape=(), dtype=int32)
|
||||
>>> x = tf.constant([4, float('nan')])
|
||||
>>> print(tf.reduce_max(x))
|
||||
tf.Tensor(4.0, shape=(), dtype=float32)
|
||||
tf.Tensor(nan, shape=(), dtype=float32)
|
||||
>>> x = tf.constant([float('nan'), float('nan')])
|
||||
>>> print(tf.reduce_max(x))
|
||||
tf.Tensor(-inf, shape=(), dtype=float32)
|
||||
tf.Tensor(nan, shape=(), dtype=float32)
|
||||
>>> x = tf.constant([float('-inf'), float('inf')])
|
||||
>>> print(tf.reduce_max(x))
|
||||
tf.Tensor(inf, shape=(), dtype=float32)
|
||||
|
@ -235,11 +235,11 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
|
||||
name = "eigen_archive",
|
||||
build_file = clean_dep("//third_party:eigen.BUILD"),
|
||||
patch_file = clean_dep("//third_party/eigen3:gpu_packet_math.patch"),
|
||||
sha256 = "00ff67c15f8e8faf14495482e7396cc1d99cdfaaa2151f4aafef92bc754e634d", # SHARED_EIGEN_SHA
|
||||
strip_prefix = "eigen-22c971a225dbb567cd1a45f6006d16c4aa618551",
|
||||
sha256 = "e807a6a6f3a0e8ab10adeb59bb5a9bbb113e8e1684f9b4b32f73f58fd758b4cf", # SHARED_EIGEN_SHA
|
||||
strip_prefix = "eigen-011e0db31d1bed8b7f73662be6d57d9f30fa457a",
|
||||
urls = [
|
||||
"https://storage.googleapis.com/mirror.tensorflow.org/gitlab.com/libeigen/eigen/-/archive/22c971a225dbb567cd1a45f6006d16c4aa618551/eigen-22c971a225dbb567cd1a45f6006d16c4aa618551.tar.gz",
|
||||
"https://gitlab.com/libeigen/eigen/-/archive/22c971a225dbb567cd1a45f6006d16c4aa618551/eigen-22c971a225dbb567cd1a45f6006d16c4aa618551.tar.gz",
|
||||
"https://storage.googleapis.com/mirror.tensorflow.org/gitlab.com/libeigen/eigen/-/archive/011e0db31d1bed8b7f73662be6d57d9f30fa457a/eigen-011e0db31d1bed8b7f73662be6d57d9f30fa457a.tar.gz",
|
||||
"https://gitlab.com/libeigen/eigen/-/archive/011e0db31d1bed8b7f73662be6d57d9f30fa457a/eigen-011e0db31d1bed8b7f73662be6d57d9f30fa457a.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user