You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Computes the element-wise maximum of the numbers in the specified tensors.</summary>
1357
+
/// <param name="x">The first tensor, represented as a span.</param>
1358
+
/// <param name="y">The second tensor, represented as a scalar.</param>
1359
+
/// <param name="destination">The destination tensor, represented as a span.</param>
1360
+
/// <exception cref="ArgumentException">Destination is too short.</exception>
1361
+
/// <exception cref="ArgumentException"><paramref name="x"/> and <paramref name="destination"/> reference overlapping memory locations and do not begin at the same location.</exception>
/// The determination of the maximum element matches the IEEE 754:2019 `maximum` function. If either value is equal to <see cref="IFloatingPointIeee754{TSelf}.NaN"/>,
1368
+
/// that value is stored as the result. Positive 0 is considered greater than negative 0.
1369
+
/// </para>
1370
+
/// <para>
1371
+
/// This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
/// <summary>Computes the element-wise number with the largest magnitude in the specified tensors.</summary>
1418
+
/// <param name="x">The first tensor, represented as a span.</param>
1419
+
/// <param name="y">The second tensor, represented as a scalar.</param>
1420
+
/// <param name="destination">The destination tensor, represented as a span.</param>
1421
+
/// <exception cref="ArgumentException">Destination is too short.</exception>
1422
+
/// <exception cref="ArgumentException"><paramref name="x"/> and <paramref name="destination"/> reference overlapping memory locations and do not begin at the same location.</exception>
/// This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
/// <summary>Computes the element-wise minimum of the numbers in the specified tensors.</summary>
1478
+
/// <param name="x">The first tensor, represented as a span.</param>
1479
+
/// <param name="y">The second tensor, represented as a scalar.</param>
1480
+
/// <param name="destination">The destination tensor, represented as a span.</param>
1481
+
/// <exception cref="ArgumentException">Destination is too short.</exception>
1482
+
/// <exception cref="ArgumentException"><paramref name="x"/> and <paramref name="destination"/> reference overlapping memory locations and do not begin at the same location.</exception>
/// The determination of the maximum element matches the IEEE 754:2019 `maximum` function. If either value is equal to <see cref="IFloatingPointIeee754{TSelf}.NaN"/>,
1489
+
/// that value is stored as the result. Positive 0 is considered greater than negative 0.
1490
+
/// </para>
1491
+
/// <para>
1492
+
/// This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
/// <summary>Computes the element-wise number with the smallest magnitude in the specified tensors.</summary>
1544
+
/// <param name="x">The first tensor, represented as a span.</param>
1545
+
/// <param name="y">The second tensor, represented as a scalar.</param>
1546
+
/// <param name="destination">The destination tensor, represented as a span.</param>
1547
+
/// <exception cref="ArgumentException">Destination is too short.</exception>
1548
+
/// <exception cref="ArgumentException"><paramref name="x"/> and <paramref name="destination"/> reference overlapping memory locations and do not begin at the same location.</exception>
/// The determination of the maximum magnitude matches the IEEE 754:2019 `minimumMagnitude` function. If either value is equal to <see cref="IFloatingPointIeee754{TSelf}.NaN"/>,
1553
+
/// that value is stored as the result. If the two values have the same magnitude and one is positive and the other is negative,
1554
+
/// the negative value is considered to have the smaller magnitude.
1555
+
/// </para>
1556
+
/// <para>
1557
+
/// This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
0 commit comments