W3cubDocs

/TensorFlow 2.4

tf.raw_ops.ConsumeMutexLock

This op consumes a lock created by MutexLock.

This op exists to consume a tensor created by MutexLock (other than direct control dependencies). It should be the only that consumes the tensor, and will raise an error if it is not. Its only purpose is to keep the mutex lock tensor alive until it is consumed by this op.

Note: This operation must run on the same device as its input. This may be enforced via the colocate_with mechanism.
Args
mutex_lock A Tensor of type variant. A tensor returned by MutexLock.
name A name for the operation (optional).
Returns
The created Operation.

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/raw_ops/ConsumeMutexLock