cpu¶
Documentation¶
Torch Version Related
This documentation is based on torch.Tensor.cpu in torch v1.9.0+cu102. Its arguments’ arrangements depend on the version of pytorch you installed.
If some arguments listed here are not working properly, please check your pytorch’s version with the following command and find its documentation.
1 | python -c 'import torch;print(torch.__version__)'
|
The arguments and keyword arguments supported in torch v1.9.0+cu102 is listed below.
Description From Torch v1.9.0+cu102¶
-
class
torch.
Tensor
¶ -
cpu
(memory_format=torch.preserve_format) → Tensor¶ Returns a copy of this object in CPU memory.
If this object is already in CPU memory and on the correct device, then no copy is performed and the original object is returned.
- Args:
- memory_format (
torch.memory_format
, optional): the desired memory format of returned Tensor. Default:
torch.preserve_format
.
- memory_format (
-