CrossTowerOps
Defined in tensorflow/contrib/distribute/python/cross_tower_ops.py
.
Base class for cross-tower reduction and broadcasting algorithms.
__init__
__init__()
Initialize self. See help(type(self)) for accurate signature.
batch_reduce
batch_reduce( method_string, value_destination_pairs )
Reduce PerDevice objects in a batch.
Reduce each first element in value_destination_pairs
to each second element which indicates the destinations.
method_string
: either 'sum' or 'mean' specifying the reduction method.value_destination_pairs
: a list or a tuple of tuples of PerDevice objects and destinations. If a destination is None, then the destinations are set to match the devices of the input PerDevice object.a list of Mirrored objects.
ValueError
: if value_destination_pairs
is not a list or a tuple of tuples of PerDevice objects and destinationsbroadcast
broadcast( tensor, destinations )
Broadcast the tensor
to destinations.
tensor
: the tensor to broadcast.destinations
: the broadcast destinations.a Mirrored object.
reduce
reduce( method_string, per_device_value, destinations=None )
Reduce per_device_value
to destinations
.
It runs the reduction operation defined by method_string
and put the result on destinations
.
method_string
: either 'sum' or 'mean' specifying the reduction method.per_device_value
: a PerDevice object.destinations
: the reduction destinations.a Mirrored object.
ValueError
: if per_device_value is not a PerDevice object.
© 2018 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/api_docs/python/tf/contrib/distribute/CrossTowerOps