Compartir vía


Tensor.PermuteDimensions<T> Método

Definición

Intercambia las dimensiones del tensor de tensor según el parámetro dimensions. Si tensor es un tensor 1D, devolverá tensor. De lo contrario, crea un nuevo Tensor<T> con el nuevo orden del eje asignando nueva memoria.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Tensors::Tensor<T> ^ PermuteDimensions(System::Numerics::Tensors::Tensor<T> ^ tensor, ReadOnlySpan<int> dimensions);
public static System.Numerics.Tensors.Tensor<T> PermuteDimensions<T> (this System.Numerics.Tensors.Tensor<T> tensor, scoped ReadOnlySpan<int> dimensions);
static member PermuteDimensions : System.Numerics.Tensors.Tensor<'T> * ReadOnlySpan<int> -> System.Numerics.Tensors.Tensor<'T>
<Extension()>
Public Function PermuteDimensions(Of T) (tensor As Tensor(Of T), dimensions As ReadOnlySpan(Of Integer)) As Tensor(Of T)

Parámetros de tipo

T

Parámetros

tensor
Tensor<T>

Tensor<T> de entrada

dimensions
ReadOnlySpan<Int32>

ReadOnlySpan<T> con la nueva ordenación del eje.

Devoluciones

Se aplica a