Skip to content

Commit

Permalink
Added release note for tf.pack --> tf.stack changes.
Browse files Browse the repository at this point in the history
Change: 142215409
  • Loading branch information
tensorflower-gardener committed Dec 16, 2016
1 parent c38776d commit 44977ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
`tf.reverse(a, [0, 2])`. `tf.reverse_v2()` will remain until 1.0 final.
* `tf.mul`, `tf.sub` and `tf.neg` are deprecated in favor of `tf.multiply`,
`tf.subtract` and `tf.negative`.
* `tf.pack` and `tf.unpack` are deprecated in favor of `tf.stack` and
`tf.unstack`.
* `TensorArray.pack` and `TensorArray.unpack` are getting deprecated in favor of
`TensorArray.stack` and `TensorArray.unstack`.
* The following Python functions have had their arguments changed to use `axis`
when referring to specific dimensions. We have kept the old keyword arguments
for compatibility currently, but we will be removing them well before the
Expand Down
2 changes: 2 additions & 0 deletions tensorflow/python/ops/tensor_array_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ class TensorArray(object):
@@read
@@gather
@@pack
@@stack
@@concat
@@write
@@scatter
@@unpack
@@unstack
@@split
@@grad
Expand Down

0 comments on commit 44977ae

Please sign in to comment.