本文简要介绍python语言中 torch.distributed.algorithms.ddp_comm_hooks.default_hooks.allreduce_hook
的用法。
用法:
torch.distributed.algorithms.ddp_comm_hooks.default_hooks.allreduce_hook(process_group, bucket)
此 DDP 通信挂钩仅使用
GradBucket
张量调用allreduce
。一旦梯度张量在所有工作人员中聚合,其then
回调将取平均值并返回结果。如果用户注册了这个钩子,DDP 结果预计与没有注册钩子的情况相同。因此,这不会改变 DDP 的行为,用户可以将此作为参考或修改此挂钩以记录有用信息或任何其他目的,同时不影响 DDP 行为。>>> ddp_model.register_comm_hook(process_group, allreduce_hook)
例子:
相关用法
- Python PyTorch all_reduce用法及代码示例
- Python PyTorch all_gather用法及代码示例
- Python PyTorch all_to_all用法及代码示例
- Python PyTorch all用法及代码示例
- Python PyTorch allclose用法及代码示例
- Python PyTorch all_gather_object用法及代码示例
- Python PyTorch argsort用法及代码示例
- Python PyTorch addmm用法及代码示例
- Python PyTorch addmv用法及代码示例
- Python PyTorch apply_effects_tensor用法及代码示例
- Python PyTorch assert_close用法及代码示例
- Python PyTorch angle用法及代码示例
- Python PyTorch atanh用法及代码示例
- Python PyTorch annotate用法及代码示例
- Python PyTorch async_execution用法及代码示例
- Python PyTorch argmax用法及代码示例
- Python PyTorch atan用法及代码示例
- Python PyTorch as_strided用法及代码示例
- Python PyTorch acos用法及代码示例
- Python PyTorch avg_pool1d用法及代码示例
- Python PyTorch asin用法及代码示例
- Python PyTorch argmin用法及代码示例
- Python PyTorch any用法及代码示例
- Python PyTorch asinh用法及代码示例
- Python PyTorch add用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.algorithms.ddp_comm_hooks.default_hooks.allreduce_hook。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。