Skip to content

Commit

Permalink
Add deprecation tag to concat.
Browse files Browse the repository at this point in the history
Change: 141227772
  • Loading branch information
tensorflower-gardener committed Dec 7, 2016
1 parent a3c4e79 commit 661dee2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tensorflow/python/ops/array_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,10 @@ def concat_v2(values, axis, name="concat_v2"):
name=name)


@deprecated(
"2016-12-13",
"This op will be removed after the deprecation date. "
"Please switch to tf.concat_v2().")
def concat(concat_dim, values, name="concat"):
"""Concatenates tensors along one dimension.
Expand Down

0 comments on commit 661dee2

Please sign in to comment.