Rate this Page

torch.Tensor.contiguous#

Tensor.contiguous(memory_format=torch.contiguous_format)Tensor#

Returns a contiguous in memory tensor containing the same data asself tensor. Ifself tensor is already in the specified memory format, this function returns theself tensor.

Parameters

memory_format (torch.memory_format, optional) – the desired memory format ofreturned Tensor. Default:torch.contiguous_format.