T - data type for outputRef() output@Operator public final class AssignAdd<T> extends PrimitiveOp implements Operand<T>
This operation outputs "ref" after the update is done. This makes it easier to chain operations that need to use the reset value.
| Modifier and Type | Class and Description |
|---|---|
static class |
AssignAdd.Options
Optional attributes for
AssignAdd |
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> AssignAdd<T> |
create(Scope scope,
Operand<T> ref,
Operand<T> value,
AssignAdd.Options... options)
Factory method to create a class to wrap a new AssignAdd operation to the graph.
|
Output<T> |
outputRef()
= Same as "ref".
|
static AssignAdd.Options |
useLocking(Boolean useLocking) |
equals, hashCode, toStringpublic static <T> AssignAdd<T> create(Scope scope, Operand<T> ref, Operand<T> value, AssignAdd.Options... options)
scope - current graph scoperef - Should be from a `Variable` node.value - The value to be added to the variable.options - carries optional attributes valuespublic static AssignAdd.Options useLocking(Boolean useLocking)
useLocking - If True, the addition will be protected by a lock;
otherwise the behavior is undefined, but may exhibit less contention.public Output<T> outputRef()
public Output<T> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<T>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.