用法
batch_reduce_to(
reduce_op, value_destination_pairs, options=None
)
参数
-
reduce_op
一个tf.distribute.ReduceOp
值,指定如何组合值。允许使用枚举的字符串表示,例如"SUM"、"MEAN"。 -
value_destination_pairs
一系列(值,目的地)对。有关说明,请参见tf.distribute.Strategy.reduce_to
。 -
options
一个tf.distribute.experimental.CommunicationOptions
。执行集体操作的选项。如果tf.distribute.Strategy
在构造函数中采用一个,这将覆盖默认选项。有关选项的详细信息,请参阅tf.distribute.experimental.CommunicationOptions
。
返回
-
减少值的列表,在
value_destination_pairs
中每对一个。
将多个 reduce_to
调用合并为一个以加快执行速度。
类似于 reduce_to
,但接受 (value, destinations) 对的列表。它比单独减少每个值更有效。
此 API 目前只能在cross-replica 上下文中调用。其他减少副本值的变体是:
tf.distribute.StrategyExtended.reduce_to
:此 API 的非批处理版本。tf.distribute.ReplicaContext.all_reduce
:此 API 在副本上下文中的对应项。它支持批处理和非批处理all-reduce。tf.distribute.Strategy.reduce
:在cross-replica 上下文中减少到主机的更方便的方法。
有关详细信息,请参阅reduce_to
。
@tf.function
def step_fn(var):
def merge_fn(strategy, value, var):
# All-reduce the value. Note that `value` here is a
# `tf.distribute.DistributedValues`.
reduced = strategy.extended.batch_reduce_to(
tf.distribute.ReduceOp.SUM, [(value, var)])[0]
strategy.extended.update(var, lambda var, value:var.assign(value),
args=(reduced,))
value = tf.identity(1.)
tf.distribute.get_replica_context().merge_call(merge_fn,
args=(value, var))
def run(strategy):
with strategy.scope():
v = tf.Variable(0.)
strategy.run(step_fn, args=(v,))
return v
run(tf.distribute.MirroredStrategy(["GPU:0", "GPU:1"]))
MirroredVariable:{
0:<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=2.0>,
1:<tf.Variable 'Variable/replica_1:0' shape=() dtype=float32, numpy=2.0>
}
run(tf.distribute.experimental.CentralStorageStrategy(
compute_devices=["GPU:0", "GPU:1"], parameter_device="CPU:0"))
<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=2.0>
run(tf.distribute.OneDeviceStrategy("GPU:0"))
<tf.Variable 'Variable:0' shape=() dtype=float32, numpy=1.0>
相关用法
- Python tf.distribute.StrategyExtended.reduce_to用法及代码示例
- Python tf.distribute.StrategyExtended.variable_created_in_scope用法及代码示例
- Python tf.distribute.StrategyExtended.update用法及代码示例
- Python tf.distribute.StrategyExtended.colocate_vars_with用法及代码示例
- Python tf.distribute.Strategy.scope用法及代码示例
- Python tf.distribute.Strategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.distribute.Strategy用法及代码示例
- Python tf.distribute.Strategy.reduce用法及代码示例
- Python tf.distribute.Strategy.experimental_distribute_dataset用法及代码示例
- Python tf.distribute.Strategy.run用法及代码示例
- Python tf.distribute.Strategy.gather用法及代码示例
- Python tf.distribute.Server用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.distribute.TPUStrategy用法及代码示例
- Python tf.distribute.experimental_set_strategy用法及代码示例
- Python tf.distribute.experimental.MultiWorkerMirroredStrategy.gather用法及代码示例
- Python tf.distribute.cluster_resolver.TFConfigClusterResolver用法及代码示例
- Python tf.distribute.experimental.MultiWorkerMirroredStrategy用法及代码示例
- Python tf.distribute.TPUStrategy.experimental_assign_to_logical_device用法及代码示例
- Python tf.distribute.NcclAllReduce用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.distribute.StrategyExtended.batch_reduce_to。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。