File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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")
Original file line number Diff line number Diff 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 "
6666VERSION_MAJOR = VERSION .split ("." )[0 ]
6767
6868def if_v2 (a ):
Original file line number Diff line number Diff line change 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
5757REQUIRED_PACKAGES = [
5858 'absl-py >= 0.7.0' ,
You can’t perform that action at this time.
0 commit comments