Implemented interface member:
property
FlattenedLength
System.Numerics.Tensors.IReadOnlyTensor.FlattenedLength
10 references to FlattenedLength
System.Numerics.Tensors (10)
System\Numerics\Tensors\netcore\Tensor.cs (10)
171totalLength += tensors[i].FlattenedLength; 215totalLength += tensors[i].FlattenedLength; 286dstSpan = dstSpan.Slice((int)tensors[i].FlattenedLength); 308dstSpan = dstSpan.Slice((int)slice.FlattenedLength); 1394nint tempTotal = tensor.FlattenedLength; 1406if (tempLinear != tensor.FlattenedLength) 1610ReadOnlySpan<T> span = MemoryMarshal.CreateSpan(ref tensor.AsReadOnlyTensorSpan()._reference, (int)tensor.FlattenedLength); 1611Span<T> ospan = MemoryMarshal.CreateSpan(ref output.AsTensorSpan()._reference, (int)output.FlattenedLength); 1623nint copyLength = Math.Min(tensor.FlattenedLength, newSize); 1625Span<T> ospan = MemoryMarshal.CreateSpan(ref output.AsTensorSpan()._reference, (int)output.FlattenedLength);