Skip to content

Commit

Permalink
Update the TensorFlow version to 1.15.8 (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatriceVignola authored Oct 3, 2022
1 parent 0520aed commit 627cd0f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Release 1.15.8

## Bug Fixes and Other Changes
* Prevent unbounded growth of command allocator memory
* Add unsorted segment ops for DML (emulated on the CPU)
* Add emulated support for int64
* Add CPU emulated versions of UnsortedSegmentSum, UnsortedSegmentMax, UnsortedSegmentMin and UnsortedSegmentProd
* Pin protobuf version between 3.61 (inclusive) and 4.0.0 (exclusive) since version >= 4.0.0 is not compatible with TensorFlow 1.15
* Optimize output allocation for inputs that can be executed in-place and directly forwarded to the output
* Add a DirectML kernel for InTopKV2

# Release 1.15.7

## Bug Fixes and Other Changes
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/core/public/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
// tensorflow/tools/pip_package/setup.py
#define TF_MAJOR_VERSION 1
#define TF_MINOR_VERSION 15
#define TF_PATCH_VERSION 7
#define TF_PATCH_VERSION 8

// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
// "-beta", "-rc", "-rc.1")
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tensorflow.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def register_extension_info(**kwargs):
# not contain rc or alpha, only numbers.
# Also update tensorflow/core/public/version.h
# and tensorflow/tools/pip_package/setup.py
VERSION = "1.15.7"
VERSION = "1.15.8"
VERSION_MAJOR = VERSION.split(".")[0]

def if_v2(a):
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# result for pip.
# Also update tensorflow/tensorflow.bzl and
# tensorflow/core/public/version.h
_VERSION = '1.15.7'
_VERSION = '1.15.8'

REQUIRED_PACKAGES = [
'absl-py >= 0.7.0',
Expand Down

0 comments on commit 627cd0f

Please sign in to comment.