39 writes to _reference
System.Numerics.Tensors (39)
System\Numerics\Tensors\netcore\Tensor.cs (9)
241
Span<T> dstSpan = MemoryMarshal.CreateSpan(ref destination.
_reference
, (int)totalLength);
438
Span<T> span = MemoryMarshal.CreateSpan(ref destination.
_reference
, (int)destination._shape.LinearLength);
461
Span<T> span = MemoryMarshal.CreateSpan(ref destination.
_reference
, (int)destination._shape.LinearLength);
1548
TensorSpan<T> output = new TensorSpan<T>(ref tensor.
_reference
, tensor._shape.LinearLength, newLengths, strides, tensor.IsPinned);
1640
ReadOnlySpan<T> span = MemoryMarshal.CreateSpan(ref Unsafe.Add(ref tensor.AsTensorSpan().
_reference
, tensor._start), tensor._values.Length - tensor._start);
1641
Span<T> ospan = MemoryMarshal.CreateSpan(ref output.AsTensorSpan().
_reference
, (int)output.FlattenedLength);
1681
Span<T> ospan = MemoryMarshal.CreateSpan(ref destination.
_reference
, (int)destination._shape.LinearLength);
1998
TensorSpan<T> output = new TensorSpan<T>(ref tensor.
_reference
, tensor._shape.LinearLength, lengths[..rank], strides[..rank], tensor.IsPinned);
2391
TensorSpan<T> output = new TensorSpan<T>(ref tensor.
_reference
, tensor._shape.LinearLength, newLengths, newStrides, tensor.IsPinned);
System\Numerics\Tensors\netcore\TensorDimensionSpan_1.cs (1)
52
return new TensorSpan<T>(ref Unsafe.Add(ref _tensor.
_reference
, linearOffset), _sliceShape);
System\Numerics\Tensors\netcore\TensorOperation.cs (7)
22
ref Unsafe.Add(ref x.
_reference
, linearOffset)
98
ref Unsafe.Add(ref destination.
_reference
, linearOffset),
119
ref Unsafe.Add(ref destination.
_reference
, destinationLinearOffset)
147
ref Unsafe.Add(ref destination.
_reference
, destinationLinearOffset)
210
ref Unsafe.Add(ref destination.
_reference
, destinationLinearOffset)
269
ref Unsafe.Add(ref destination.
_reference
, destinationLinearOffset)
291
ref Unsafe.Add(ref destination.
_reference
, destinationLinearOffset)
System\Numerics\Tensors\netcore\TensorSpan_1.cs (22)
42
_reference
= ref (array is not null)
59
_reference
= ref (array is not null)
71
_reference
= ref (array is not null)
81
_reference
= ref reference;
93
_reference
= ref reference;
103
_reference
= ref (array is not null)
115
_reference
= ref (array is not null)
125
_reference
= ref Unsafe.AsRef<T>(data);
138
_reference
= ref Unsafe.AsRef<T>(data);
144
_reference
= ref data;
149
_reference
= ref reference;
156
get => ref Unsafe.Add(ref
_reference
, _shape.GetLinearOffset<TensorShape.GetOffsetAndLengthForNInt, nint>(indexes));
162
get => ref Unsafe.Add(ref
_reference
, _shape.GetLinearOffset<TensorShape.GetOffsetAndLengthForNIndex, NIndex>(indexes));
200
=> Unsafe.AreSame(ref left.
_reference
, ref right.
_reference
)
215
new ReadOnlyTensorSpan<T>(ref tensor.
_reference
, tensor._shape);
218
public ReadOnlyTensorSpan<T> AsReadOnlyTensorSpan() => new ReadOnlyTensorSpan<T>(ref
_reference
, in _shape);
277
if (_shape.FlattenedLength != 0) ret = ref
_reference
;
286
ref Unsafe.Add(ref
_reference
, linearOffset),
296
ref Unsafe.Add(ref
_reference
, linearOffset),
306
ref Unsafe.Add(ref
_reference
, linearOffset),
423
public readonly ref T Current => ref Unsafe.Add(ref _span.
_reference
, _linearOffset);