Vector512.Round Method

Definition

Overloads

Round(Vector512<Double>)
Round(Vector512<Single>)
Round(Vector512<Double>, MidpointRounding)

Rounds each element in a vector to the nearest integer using the specified rounding mode.

Round(Vector512<Single>, MidpointRounding)

Rounds each element in a vector to the nearest integer using the specified rounding mode.

Round(Vector512<Double>)

public:
 static System::Runtime::Intrinsics::Vector512<double> Round(System::Runtime::Intrinsics::Vector512<double> vector);
public static System.Runtime.Intrinsics.Vector512<double> Round (System.Runtime.Intrinsics.Vector512<double> vector);
static member Round : System.Runtime.Intrinsics.Vector512<double> -> System.Runtime.Intrinsics.Vector512<double>
Public Function Round (vector As Vector512(Of Double)) As Vector512(Of Double)

Parameters

vector
Vector512<Double>

Returns

Applies to

Round(Vector512<Single>)

public:
 static System::Runtime::Intrinsics::Vector512<float> Round(System::Runtime::Intrinsics::Vector512<float> vector);
public static System.Runtime.Intrinsics.Vector512<float> Round (System.Runtime.Intrinsics.Vector512<float> vector);
static member Round : System.Runtime.Intrinsics.Vector512<single> -> System.Runtime.Intrinsics.Vector512<single>
Public Function Round (vector As Vector512(Of Single)) As Vector512(Of Single)

Parameters

vector
Vector512<Single>

Returns

Applies to

Round(Vector512<Double>, MidpointRounding)

Rounds each element in a vector to the nearest integer using the specified rounding mode.

public:
 static System::Runtime::Intrinsics::Vector512<double> Round(System::Runtime::Intrinsics::Vector512<double> vector, MidpointRounding mode);
public static System.Runtime.Intrinsics.Vector512<double> Round (System.Runtime.Intrinsics.Vector512<double> vector, MidpointRounding mode);
static member Round : System.Runtime.Intrinsics.Vector512<double> * MidpointRounding -> System.Runtime.Intrinsics.Vector512<double>
Public Function Round (vector As Vector512(Of Double), mode As MidpointRounding) As Vector512(Of Double)

Parameters

vector
Vector512<Double>

The vector to round.

mode
MidpointRounding

The mode under which vector should be rounded.

Returns

The result of rounding each element in vector to the nearest integer using mode.

Applies to

Round(Vector512<Single>, MidpointRounding)

Rounds each element in a vector to the nearest integer using the specified rounding mode.

public:
 static System::Runtime::Intrinsics::Vector512<float> Round(System::Runtime::Intrinsics::Vector512<float> vector, MidpointRounding mode);
public static System.Runtime.Intrinsics.Vector512<float> Round (System.Runtime.Intrinsics.Vector512<float> vector, MidpointRounding mode);
static member Round : System.Runtime.Intrinsics.Vector512<single> * MidpointRounding -> System.Runtime.Intrinsics.Vector512<single>
Public Function Round (vector As Vector512(Of Single), mode As MidpointRounding) As Vector512(Of Single)

Parameters

vector
Vector512<Single>

The vector to round.

mode
MidpointRounding

The mode under which vector should be rounded.

Returns

The result of rounding each element in vector to the nearest integer using mode.

Applies to