Uredi

Deli z drugimi prek


Tensor<T>.AsReadOnlyTensorSpan Method

Definition

Overloads

AsReadOnlyTensorSpan()

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory.

AsReadOnlyTensorSpan(ReadOnlySpan<NIndex>)

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided start indexes.

AsReadOnlyTensorSpan(ReadOnlySpan<NRange>)

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided ranges.

AsReadOnlyTensorSpan(ReadOnlySpan<IntPtr>)

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided start locations.

AsReadOnlyTensorSpan()

Source:
Tensor.cs

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory.

public:
 virtual System::Numerics::Tensors::ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan();
public System.Numerics.Tensors.ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan ();
abstract member AsReadOnlyTensorSpan : unit -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
override this.AsReadOnlyTensorSpan : unit -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
Public Function AsReadOnlyTensorSpan () As ReadOnlyTensorSpan(Of T)

Returns

ReadOnlyTensorSpan<T>

Implements

Applies to

AsReadOnlyTensorSpan(ReadOnlySpan<NIndex>)

Source:
Tensor.cs

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided start indexes.

public:
 virtual System::Numerics::Tensors::ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan(ReadOnlySpan<System::Buffers::NIndex> startIndex);
public System.Numerics.Tensors.ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan (scoped ReadOnlySpan<System.Buffers.NIndex> startIndex);
abstract member AsReadOnlyTensorSpan : ReadOnlySpan<System.Buffers.NIndex> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
override this.AsReadOnlyTensorSpan : ReadOnlySpan<System.Buffers.NIndex> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
Public Function AsReadOnlyTensorSpan (startIndex As ReadOnlySpan(Of NIndex)) As ReadOnlyTensorSpan(Of T)

Parameters

startIndex
ReadOnlySpan<NIndex>

The start indexes you want in the ReadOnlyTensorSpan<T>

Returns

Implements

Applies to

AsReadOnlyTensorSpan(ReadOnlySpan<NRange>)

Source:
Tensor.cs

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided ranges.

public:
 virtual System::Numerics::Tensors::ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan(ReadOnlySpan<System::Buffers::NRange> start);
public System.Numerics.Tensors.ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan (scoped ReadOnlySpan<System.Buffers.NRange> start);
abstract member AsReadOnlyTensorSpan : ReadOnlySpan<System.Buffers.NRange> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
override this.AsReadOnlyTensorSpan : ReadOnlySpan<System.Buffers.NRange> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
Public Function AsReadOnlyTensorSpan (start As ReadOnlySpan(Of NRange)) As ReadOnlyTensorSpan(Of T)

Parameters

start
ReadOnlySpan<NRange>

The ranges you want in the ReadOnlyTensorSpan<T>

Returns

Implements

Applies to

AsReadOnlyTensorSpan(ReadOnlySpan<IntPtr>)

Source:
Tensor.cs

Converts this Tensor<T> to a ReadOnlyTensorSpan<T> pointing to the same backing memory based on the provided start locations.

public:
 virtual System::Numerics::Tensors::ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan(ReadOnlySpan<IntPtr> start);
public System.Numerics.Tensors.ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan (scoped ReadOnlySpan<IntPtr> start);
abstract member AsReadOnlyTensorSpan : ReadOnlySpan<nativeint> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
override this.AsReadOnlyTensorSpan : ReadOnlySpan<nativeint> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
Public Function AsReadOnlyTensorSpan (start As ReadOnlySpan(Of IntPtr)) As ReadOnlyTensorSpan(Of T)

Parameters

start

ReadOnlySpan<IntPtr>

ReadOnlySpan<nativeint>

The start locations you want in the ReadOnlyTensorSpan<T>

Returns

Implements

Applies to