Share via


TensorInt8Bit.Create Method

Definition

Overloads

Create()

Creates an 8-bit signed integer tensor object without allocating a buffer.

Create(IIterable<Int64>)

Creates an 8-bit signed integer tensor object and allocates a buffer of size shape.

Create()

Creates an 8-bit signed integer tensor object without allocating a buffer.

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

Returns

An 8-bit signed integer tensor object.

Attributes

Remarks

Windows Server

To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.

Thread safety

This API is thread-safe.

Applies to

Create(IIterable<Int64>)

Creates an 8-bit signed integer tensor object and allocates a buffer of size shape.

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

Parameters

shape

IIterable<Int64>

IEnumerable<Int64>

Windows.Foundation.Collections.IIterable

IIterable<long>

The size of the buffer.

Returns

An 8-bit signed integer tensor object with a buffer of the given size.

Attributes

Remarks

Windows Server

To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.

Thread safety

This API is thread-safe.

Applies to