TensorDouble.Create Metodo

Definizione

Overload

Create()

Crea un oggetto tensore float a 64 bit senza allocare un buffer.

Create(IIterable<Int64>)

Crea un oggetto tensore float a 64 bit e alloca un buffer di forma di dimensioni.

Create()

Crea un oggetto tensore float a 64 bit senza allocare un buffer.

public:
 static TensorDouble ^ Create();
/// [Windows.Foundation.Metadata.Overload("Create")]
 static TensorDouble Create();
[Windows.Foundation.Metadata.Overload("Create")]
public static TensorDouble Create();
function create()
Public Shared Function Create () As TensorDouble

Restituisce

Oggetto tensore float a 64 bit.

Attributi

Commenti

Windows Server

Per usare questa API in Windows Server, è necessario usare Windows Server 2019 con Esperienza desktop.

Thread safety

Questa API è thread-safe.

Si applica a

Create(IIterable<Int64>)

Crea un oggetto tensore float a 64 bit e alloca un buffer di forma di dimensioni.

public:
 static TensorDouble ^ Create(IIterable<long long> ^ shape);
/// [Windows.Foundation.Metadata.Overload("Create2")]
 static TensorDouble Create(IIterable<long> const& shape);
[Windows.Foundation.Metadata.Overload("Create2")]
public static TensorDouble Create(IEnumerable<long> shape);
function create(shape)
Public Shared Function Create (shape As IEnumerable(Of Long)) As TensorDouble

Parametri

shape

IIterable<Int64>

IEnumerable<Int64>

Windows.Foundation.Collections.IIterable

IIterable<long>

Dimensione del buffer.

Restituisce

Oggetto tensore float a 64 bit con un buffer delle dimensioni specificate.

Attributi

Commenti

Windows Server

Per usare questa API in Windows Server, è necessario usare Windows Server 2019 con Esperienza desktop.

Thread safety

Questa API è thread-safe.

Si applica a