6 references to Tensor
System.Numerics.Tensors (6)
System\Numerics\Tensors\netcore\Tensor.cs (1)
52internal Tensor(T[]? values, ReadOnlySpan<nint> lengths, int memoryOffset, bool isPinned = false) : this(values, lengths, Array.Empty<nint>(), memoryOffset, isPinned) { }
System\Numerics\Tensors\netcore\TensorExtensions.cs (5)
247Tensor<T> output = new Tensor<T>(input._values, lengths, strides, input._memoryOffset); 2663outTensor = new Tensor<T>(values, lengths, Array.Empty<nint>(), tensor._memoryOffset, tensor._isPinned); 2774return new Tensor<T>(tensor._values, arrLengths, strides, tensor._memoryOffset); 3302return new Tensor<T>(tensor._values, lengths, strides, tensor._memoryOffset); 3664return new Tensor<T>(tensor._values, lengths, strides, tensor._memoryOffset);