TensorInt64Bit.CreateFromBuffer(Int64[], IBuffer) Method

Definition

Creates a 64-bit signed integer tensor object with the given shape and uses the underlying buffer in buffer for subsequent evaluation.

public:
 static TensorInt64Bit ^ CreateFromBuffer(Platform::Array <long long> ^ shape, IBuffer ^ buffer);
 static TensorInt64Bit CreateFromBuffer(winrt::array_view <long> const& shape, IBuffer const& buffer);
public static TensorInt64Bit CreateFromBuffer(long[] shape, IBuffer buffer);
function createFromBuffer(shape, buffer)
Public Shared Function CreateFromBuffer (shape As Long(), buffer As IBuffer) As TensorInt64Bit

Parameters

shape

Int64[]

long long[]

long[]

The size of the buffer.

buffer
IBuffer

The buffer to use during evaluation.

Returns

A 64-bit signed integer tensor object backed by a buffer reference to the provided IBuffer buffer.

Windows requirements

Device family
Windows 10, version 1903 (introduced in 10.0.18362.0)
API contract
Windows.AI.MachineLearning.MachineLearningContract (introduced in v2.0)

Remarks

No copies are performed during the creation of this object and the underlying buffer in buffer is used directly by the engine.

Copies to video memory are made when running on non-CPU devices.

Applies to