Rate this Page

torch.Tensor.storage_offset#

Tensor.storage_offset()int#

Returnsself tensor’s offset in the underlying storage in terms ofnumber of storage elements (not bytes).

Example:

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