Skip to content

Commit

Permalink
Fix doc discrepancy in tf.scatter_add
Browse files Browse the repository at this point in the history
This fix fixes doc discrepancy in tf.scatter_add.

This fix fixes 20200

Signed-off-by: Yong Tang <[email protected]>
  • Loading branch information
yongtang committed Jun 21, 2018
1 parent a8c59ba commit 5dae097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/python/ops/state_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def scatter_add(ref, indices, updates, use_locking=False, name=None):
A tensor of indices into the first dimension of `ref`.
updates: A `Tensor`. Must have the same type as `ref`.
A tensor of updated values to store in `ref`.
use_locking: An optional `bool`. Defaults to `True`.
use_locking: An optional `bool`. Defaults to `False`.
If True, the assignment will be protected by a lock;
otherwise the behavior is undefined, but may exhibit less contention.
name: A name for the operation (optional).
Expand Down

0 comments on commit 5dae097

Please sign in to comment.