本文简要介绍python语言中 torch.distributed.elastic.multiprocessing.errors.record
的用法。
用法:
torch.distributed.elastic.multiprocessing.errors.record(fn, error_handler=None)
使用提供的
error_handler
记录修饰函数中发生的错误/异常的语法糖。使用这个装饰器相当于:
error_handler = get_error_handler() error_handler.initialize() try: foobar() except ChildFailedError as e: _, failure = e.get_first_failure() error_handler.dump_error_file(failure.error_file, failure.exitcode) raise except Exception as e: error_handler.record(e) raise
重要的
在顶层方法中每个进程使用一次此装饰器,通常这是主要方法。
示例
@record def main(): pass if __name__=="__main__": main()
相关用法
- Python PyTorch reciprocal用法及代码示例
- Python PyTorch renorm用法及代码示例
- Python PyTorch reshape用法及代码示例
- Python PyTorch real用法及代码示例
- Python PyTorch repeat_interleave用法及代码示例
- Python PyTorch remove用法及代码示例
- Python PyTorch read_vec_flt_ark用法及代码示例
- Python PyTorch register_kl用法及代码示例
- Python PyTorch read_vec_int_ark用法及代码示例
- Python PyTorch resolve_neg用法及代码示例
- Python PyTorch remainder用法及代码示例
- Python PyTorch register_module_forward_pre_hook用法及代码示例
- Python PyTorch remote用法及代码示例
- Python PyTorch register_module_full_backward_hook用法及代码示例
- Python PyTorch remove_spectral_norm用法及代码示例
- Python PyTorch remove_weight_norm用法及代码示例
- Python PyTorch retinanet_resnet50_fpn用法及代码示例
- Python PyTorch read_vec_flt_scp用法及代码示例
- Python PyTorch resolve_conj用法及代码示例
- Python PyTorch register_parametrization用法及代码示例
- Python PyTorch result_type用法及代码示例
- Python PyTorch replace_pattern用法及代码示例
- Python PyTorch register_module_forward_hook用法及代码示例
- Python PyTorch read_mat_scp用法及代码示例
- Python PyTorch read_mat_ark用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.elastic.multiprocessing.errors.record。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。