| File: System\Numerics\Tensors\netcore\TensorPrimitives.Truncate.cs | Web Access |
| Project: src\runtime\src\libraries\System.Numerics.Tensors\src\System.Numerics.Tensors.csproj (System.Numerics.Tensors) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; using System.Runtime.Intrinsics.X86; namespace System.Numerics.Tensors { public static partial class TensorPrimitives { /// <summary>Computes the element-wise truncation of numbers in the specified tensor.</summary> /// <param name="x">The first tensor, represented as a span.</param> /// <param name="destination">The destination tensor, represented as a span.</param> /// <exception cref="ArgumentException">Destination is too short.</exception> /// <exception cref="ArgumentException"><paramref name="x"/> and <paramref name="destination"/> reference overlapping memory locations and do not begin at the same location.</exception> /// <remarks> /// <para> /// This method effectively computes <c><paramref name="destination" />[i] = T.Truncate(<paramref name="x" />[i])</c>. /// </para> /// </remarks> public static void Truncate<T>(ReadOnlySpan<T> x, Span<T> destination) where T : IFloatingPoint<T> { if (typeof(T) == typeof(Half) && TryUnaryInvokeHalfAsInt16<T, TruncateOperator<float>>(x, destination)) { return; } InvokeSpanIntoSpan<T, TruncateOperator<T>>(x, destination); } private readonly struct TruncateOperator<T> : IUnaryOperator<T, T> where T : IFloatingPoint<T> { public static bool Vectorizable => typeof(T) == typeof(float) || typeof(T) == typeof(double); public static T Invoke(T x) => T.Truncate(x); public static Vector128<T> Invoke(Vector128<T> x) { if (typeof(T) == typeof(double)) { return Vector128.Truncate(x.AsDouble()).As<double, T>(); } else { Debug.Assert(typeof(T) == typeof(float)); return Vector128.Truncate(x.AsSingle()).As<float, T>(); } } public static Vector256<T> Invoke(Vector256<T> x) { if (typeof(T) == typeof(double)) { return Vector256.Truncate(x.AsDouble()).As<double, T>(); } else { Debug.Assert(typeof(T) == typeof(float)); return Vector256.Truncate(x.AsSingle()).As<float, T>(); } } public static Vector512<T> Invoke(Vector512<T> x) { if (typeof(T) == typeof(double)) { return Vector512.Truncate(x.AsDouble()).As<double, T>(); } else { Debug.Assert(typeof(T) == typeof(float)); return Vector512.Truncate(x.AsSingle()).As<float, T>(); } } } } }