當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch Store.delete_key用法及代碼示例


本文簡要介紹python語言中 torch.distributed.Store.delete_key 的用法。

用法:

torch.distributed.Store.delete_key(self: torch._C._distributed_c10d.Store, arg0: str) → bool

參數

key(str) -要從存儲中刪除的 key

返回

True 如果 key 被刪除,否則 False

從存儲中刪除與 key 關聯的鍵值對。如果 key 被成功刪除,則返回true,否則返回false

警告

delete_key API 僅受 TCPStoreHashStore 支持。將此 API 與 FileStore 一起使用將導致異常。

例子:

>>> import torch.distributed as dist
>>> from datetime import timedelta
>>> # Using TCPStore as an example, HashStore can also be used
>>> store = dist.TCPStore("127.0.0.1", 0, 1, True, timedelta(seconds=30))
>>> store.set("first_key")
>>> # This should return true
>>> store.delete_key("first_key")
>>> # This should return false
>>> store.delete_key("bad_key")

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.distributed.Store.delete_key。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。