当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch stash用法及代码示例


本文简要介绍python语言中 torch.distributed.pipeline.sync.skip.skippable.stash 的用法。

用法:

class torch.distributed.pipeline.sync.skip.skippable.stash(name, tensor)

参数

  • name(str) -跳跃张量的名称

  • input(torch.Tensor或者None) -传递给跳跃连接的张量

存储跳过张量的命令。

def forward(self, input):
    yield stash('name', input)
    return f(input)

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.pipeline.sync.skip.skippable.stash。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。