Creates a handle to a Variable resource.
tf.raw_ops.VarHandleOp(
dtype,
shape,
container='',
shared_name='',
allowed_devices=[],
name=None
)
| Args | |
|---|---|
dtype | A tf.DType. the type of this variable. Must agree with the dtypes of all ops using this variable. |
shape | A tf.TensorShape or list of ints. The (possibly partially specified) shape of this variable. |
container | An optional string. Defaults to "". the container this variable is placed in. |
shared_name | An optional string. Defaults to "". the name by which this variable is referred to. |
allowed_devices | An optional list of strings. Defaults to []. DEPRECATED. The allowed devices containing the resource variable. Set when the output ResourceHandle represents a per-replica/partitioned resource variable. |
name | A name for the operation (optional). |
| Returns | |
|---|---|
A Tensor of type resource. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/raw_ops/VarHandleOp