Implemented interface member:
property
FlattenedLength
System.Numerics.Tensors.IReadOnlyTensor.FlattenedLength
15 references to FlattenedLength
System.Numerics.Tensors (15)
System\Numerics\Tensors\netcore\Tensor.cs (7)
272
Span<T> dstSpan = MemoryMarshal.CreateSpan(ref destination._reference, (int)destination.
FlattenedLength
);
392
Span<T> span = MemoryMarshal.CreateSpan(ref destination._reference, (int)destination.
FlattenedLength
);
430
Span<T> span = MemoryMarshal.CreateSpan(ref destination._reference, (int)destination.
FlattenedLength
);
1479
nint tempTotal = tensor.
FlattenedLength
;
1492
if (tempLinear != tensor.
FlattenedLength
)
1684
Span<T> ospan = MemoryMarshal.CreateSpan(ref destination._reference, (int)destination.
FlattenedLength
);
1696
nint copyLength = Math.Min(tensor.FlattenedLength, destination.
FlattenedLength
);
System\Numerics\Tensors\netcore\TensorOperation.cs (7)
18
for (nint i = 0; i < x.
FlattenedLength
; i++)
94
for (nint i = 0; i < destination.
FlattenedLength
; i++)
112
for (nint i = 0; i < destination.
FlattenedLength
; i++)
140
for (nint i = 0; i < destination.
FlattenedLength
; i++)
201
for (nint i = 0; i < destination.
FlattenedLength
; i++)
261
for (nint i = 0; i < destination.
FlattenedLength
; i++)
283
for (nint i = 0; i < destination.
FlattenedLength
; i++)
System\Numerics\Tensors\netcore\TensorSpanDebugView.cs (1)
14
_array = new T[span.
FlattenedLength
];