Uses of Class
jdk.incubator.vector.Float16
Packages that use Float16
-
Uses of Float16 in jdk.incubator.vector
Classes in jdk.incubator.vector that implement interfaces with type arguments of type Float16Modifier and TypeClassDescriptionfinal class
TheFloat16
is a class holding 16-bit data in IEEE 754 binary16 format.Fields in jdk.incubator.vector declared as Float16Modifier and TypeFieldDescriptionstatic final Float16
Float16.MAX_VALUE
A constant holding the largest positive finite value of typeFloat16
, (2-2-10)·215, numerically equal to 65504.0.static final Float16
Float16.MIN_NORMAL
A constant holding the smallest positive normal value of typeFloat16
, 2-14.static final Float16
Float16.MIN_VALUE
A constant holding the smallest positive nonzero value of typeFloat16
, 2-24.static final Float16
Float16.NaN
A constant holding a Not-a-Number (NaN) value of typeFloat16
.static final Float16
Float16.NEGATIVE_INFINITY
A constant holding the negative infinity of typeFloat16
.static final Float16
Float16.POSITIVE_INFINITY
A constant holding the positive infinity of typeFloat16
.Methods in jdk.incubator.vector that return Float16Modifier and TypeMethodDescriptionstatic Float16
Returns the absolute value of the argument.static Float16
Adds twoFloat16
values together as per the+
operator semantics using the round to nearest rounding policy.static Float16
Returns the first floating-point argument with the sign of the second floating-point argument.static Float16
Divides twoFloat16
values as per the/
operator semantics using the round to nearest rounding policy.static Float16
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearestFloat16
.static Float16
Returns the larger of twoFloat16
values.static Float16
Returns the smaller of twoFloat16
values.static Float16
Multiplies twoFloat16
values as per the*
operator semantics using the round to nearest rounding policy.static Float16
Returns the negation of the argument.static Float16
Returns the floating-point value adjacent tov
in the direction of negative infinity.static Float16
Returns the floating-point value adjacent tov
in the direction of positive infinity.static Float16
Returnsv
× 2scaleFactor
rounded as if performed by a single correctly rounded floating-point multiply.static Float16
Float16.shortBitsToFloat16
(short bits) Returns theFloat16
value corresponding to a given bit representation.static Float16
Returns the signum function of the argument; zero if the argument is zero, 1.0 if the argument is greater than zero, -1.0 if the argument is less than zero.static Float16
Returns the square root of the operand.static Float16
Subtracts twoFloat16
values as per the-
operator semantics using the round to nearest rounding policy.static Float16
Returns the size of an ulp of the argument.static Float16
Float16.valueOf
(double d) Returns aFloat16
value rounded from thedouble
argument using the round to nearest rounding policy.static Float16
Float16.valueOf
(float f) Returns aFloat16
value rounded from thefloat
argument using the round to nearest rounding policy.static Float16
Float16.valueOf
(int value) Returns the value of anint
converted toFloat16
.static Float16
Float16.valueOf
(long value) Returns the value of along
converted toFloat16
.static Float16
Returns aFloat16
holding the floating-point value represented by the argument string.static Float16
Float16.valueOf
(BigDecimal v) Returns aFloat16
value rounded from theBigDecimal
argument using the round to nearest rounding policy.Methods in jdk.incubator.vector with parameters of type Float16Modifier and TypeMethodDescriptionstatic Float16
Returns the absolute value of the argument.static Float16
Adds twoFloat16
values together as per the+
operator semantics using the round to nearest rounding policy.static int
Compares the two specifiedFloat16
values.int
Compares twoFloat16
objects numerically.static Float16
Returns the first floating-point argument with the sign of the second floating-point argument.static Float16
Divides twoFloat16
values as per the/
operator semantics using the round to nearest rounding policy.static short
Float16.float16ToRawShortBits
(Float16 f16) Returns a representation of the specified floating-point value according to the IEEE 754 floating-point binary16 bit layout.static short
Float16.float16ToShortBits
(Float16 f16) Returns a representation of the specified floating-point value according to the IEEE 754 floating-point binary16 bit layout.static Float16
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearestFloat16
.static int
Float16.getExponent
(Float16 f16) Returns the unbiased exponent used in the representation of aFloat16
.static int
Returns a hash code for aFloat16
value; compatible withFloat16.hashCode()
.static boolean
Returnstrue
if the argument is a finite floating-point value; returnsfalse
otherwise (for NaN and infinity arguments).static boolean
Float16.isInfinite
(Float16 f16) Returnstrue
if the specified number is infinitely large in magnitude,false
otherwise.static boolean
Returnstrue
if the specified number is a Not-a-Number (NaN) value,false
otherwise.static Float16
Returns the larger of twoFloat16
values.static Float16
Returns the smaller of twoFloat16
values.static Float16
Multiplies twoFloat16
values as per the*
operator semantics using the round to nearest rounding policy.static Float16
Returns the negation of the argument.static Float16
Returns the floating-point value adjacent tov
in the direction of negative infinity.static Float16
Returns the floating-point value adjacent tov
in the direction of positive infinity.static Float16
Returnsv
× 2scaleFactor
rounded as if performed by a single correctly rounded floating-point multiply.static Float16
Returns the signum function of the argument; zero if the argument is zero, 1.0 if the argument is greater than zero, -1.0 if the argument is less than zero.static Float16
Returns the square root of the operand.static Float16
Subtracts twoFloat16
values as per the-
operator semantics using the round to nearest rounding policy.static String
Float16.toHexString
(Float16 f16) Returns a hexadecimal string representation of theFloat16
argument.static String
Returns a string representation of theFloat16
argument.static Float16
Returns the size of an ulp of the argument.