torch.Tensor.storage_offset
-
Tensor.storage_offset() → int -
Возвращает смещение тензора в базовом хранилище в терминах числа элементов хранилища (а не байтов).
Пример:
>>> x = torch.tensor([1, 2, 3, 4, 5]) >>> x.storage_offset() 0 >>> x[3:].storage_offset() 3
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/1.13/generated/torch.Tensor.storage_offset.html