Skip to content

Commit 627cd0f

Browse files
Update the TensorFlow version to 1.15.8 (#395)
1 parent 0520aed commit 627cd0f

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

RELEASE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Release 1.15.8
2+
3+
## Bug Fixes and Other Changes
4+
* Prevent unbounded growth of command allocator memory
5+
* Add unsorted segment ops for DML (emulated on the CPU)
6+
* Add emulated support for int64
7+
* Add CPU emulated versions of UnsortedSegmentSum, UnsortedSegmentMax, UnsortedSegmentMin and UnsortedSegmentProd
8+
* Pin protobuf version between 3.61 (inclusive) and 4.0.0 (exclusive) since version >= 4.0.0 is not compatible with TensorFlow 1.15
9+
* Optimize output allocation for inputs that can be executed in-place and directly forwarded to the output
10+
* Add a DirectML kernel for InTopKV2
11+
112
# Release 1.15.7
213

314
## Bug Fixes and Other Changes

tensorflow/core/public/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
// tensorflow/tools/pip_package/setup.py
2323
#define TF_MAJOR_VERSION 1
2424
#define TF_MINOR_VERSION 15
25-
#define TF_PATCH_VERSION 7
25+
#define TF_PATCH_VERSION 8
2626

2727
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
2828
// "-beta", "-rc", "-rc.1")

tensorflow/tensorflow.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def register_extension_info(**kwargs):
6262
# not contain rc or alpha, only numbers.
6363
# Also update tensorflow/core/public/version.h
6464
# and tensorflow/tools/pip_package/setup.py
65-
VERSION = "1.15.7"
65+
VERSION = "1.15.8"
6666
VERSION_MAJOR = VERSION.split(".")[0]
6767

6868
def if_v2(a):

tensorflow/tools/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# result for pip.
5353
# Also update tensorflow/tensorflow.bzl and
5454
# tensorflow/core/public/version.h
55-
_VERSION = '1.15.7'
55+
_VERSION = '1.15.8'
5656

5757
REQUIRED_PACKAGES = [
5858
'absl-py >= 0.7.0',

0 commit comments

Comments
 (0)