torch.Tensor.int¶
- Tensor.int(memory_format=torch.preserve_format) Tensor ¶
self.int()
is equivalent toself.to(torch.int32)
. Seeto()
.- Parameters
memory_format (
torch.memory_format
, optional) – the desired memory format of returned Tensor. Default:torch.preserve_format
.