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


Python PyTorch Tensor.storage_offset用法及代碼示例


本文簡要介紹python語言中 torch.Tensor.storage_offset 的用法。

用法:

Tensor.storage_offset() → int

返回 self 張量在底層存儲中的偏移量,以存儲元素的數量(不是字節數)表示。

例子:

>>> x = torch.tensor([1, 2, 3, 4, 5])
>>> x.storage_offset()
0
>>> x[3:].storage_offset()
3

相關用法


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