@@ -871,6 +871,69 @@ public static int testDoubleBooleanMethods() {
871
871
872
872
/* ******************** copySign tests******************************** */
873
873
874
+ public static int testFloat16CopySign () {
875
+ int failures = 0 ;
876
+
877
+ // testCases[0] are logically positive numbers;
878
+ // testCases[1] are negative numbers.
879
+ float testCases [][] = {
880
+ {+0.0f ,
881
+ Float16 .MIN_VALUE .floatValue (),
882
+ Float16_MAX_SUBNORMALmm .floatValue (),
883
+ Float16_MAX_SUBNORMAL .floatValue (),
884
+ Float16 .MIN_NORMAL .floatValue (),
885
+ 1.0f ,
886
+ 3.0f ,
887
+ Float16_MAX_VALUEmm .floatValue (),
888
+ Float16 .MAX_VALUE .floatValue (),
889
+ infinityF16 .floatValue (),
890
+ },
891
+ {-infinityF16 .floatValue (),
892
+ -Float16 .MAX_VALUE .floatValue (),
893
+ -3.0f ,
894
+ -1.0f ,
895
+ -Float16 .MIN_NORMAL .floatValue (),
896
+ -Float16_MAX_SUBNORMALmm .floatValue (),
897
+ -Float16_MAX_SUBNORMAL .floatValue (),
898
+ -Float16 .MIN_VALUE .floatValue (),
899
+ -0.0f }
900
+ };
901
+
902
+ float NaNs [] = {Float16 .shortBitsToFloat16 ((short ) 0x7e00 ).floatValue (), // "positive" NaN
903
+ Float16 .shortBitsToFloat16 ((short ) 0xfe00 ).floatValue ()}; // "negative" NaN
904
+
905
+ // Tests shared between raw and non-raw versions
906
+ for (int i = 0 ; i < 2 ; i ++) {
907
+ for (int j = 0 ; j < 2 ; j ++) {
908
+ for (int m = 0 ; m < testCases [i ].length ; m ++) {
909
+ for (int n = 0 ; n < testCases [j ].length ; n ++) {
910
+ // copySign(magnitude, sign)
911
+ failures +=Tests .test ("Float16.copySign(Float16,Float16)" ,
912
+ Float16 .valueOf (testCases [i ][m ]),Float16 .valueOf (testCases [j ][n ]),
913
+ Float16 .copySign (Float16 .valueOf (testCases [i ][m ]), Float16 .valueOf (testCases [j ][n ])),
914
+ Float16 .valueOf ((j ==0 ?1.0f :-1.0f )*Math .abs (testCases [i ][m ])) );
915
+ }
916
+ }
917
+ }
918
+ }
919
+
920
+ // For rawCopySign, NaN may effectively have either sign bit
921
+ // while for copySign NaNs are treated as if they always have
922
+ // a zero sign bit (i.e. as positive numbers)
923
+ for (int i = 0 ; i < 2 ; i ++) {
924
+ for (int j = 0 ; j < NaNs .length ; j ++) {
925
+ for (int m = 0 ; m < testCases [i ].length ; m ++) {
926
+ // copySign(magnitude, sign)
927
+
928
+ failures += (Float16 .abs (Float16 .copySign (Float16 .valueOf (testCases [i ][m ]), Float16 .valueOf (NaNs [j ]))).floatValue () ==
929
+ Float16 .abs (Float16 .valueOf (testCases [i ][m ])).floatValue ()) ? 0 :1 ;
930
+ }
931
+ }
932
+ }
933
+
934
+ return failures ;
935
+ }
936
+
874
937
public static int testFloatCopySign () {
875
938
int failures = 0 ;
876
939
@@ -1892,6 +1955,38 @@ public static int testDoubleUlp() {
1892
1955
return failures ;
1893
1956
}
1894
1957
1958
+ public static int testFloat16Signum () {
1959
+ int failures = 0 ;
1960
+ float testCases [][] = {
1961
+ {NaNf16 .floatValue (), NaNf16 .floatValue ()},
1962
+ {-infinityF16 .floatValue (), -1.0f },
1963
+ {-Float16 .MAX_VALUE .floatValue (), -1.0f },
1964
+ {-Float16 .MIN_NORMAL .floatValue (), -1.0f },
1965
+ {-1.0f , -1.0f },
1966
+ {-2.0f , -1.0f },
1967
+ {-Float16_MAX_SUBNORMAL .floatValue (), -1.0f },
1968
+ {-Float16 .MIN_VALUE .floatValue (), -1.0f },
1969
+ {-0.0f , -0.0f },
1970
+ {+0.0f , +0.0f },
1971
+ {Float16 .MIN_VALUE .floatValue (), 1.0f },
1972
+ {Float16_MAX_SUBNORMALmm .floatValue (), 1.0f },
1973
+ {Float16_MAX_SUBNORMAL .floatValue (), 1.0f },
1974
+ {Float16 .MIN_NORMAL .floatValue (), 1.0f },
1975
+ {1.0f , 1.0f },
1976
+ {2.0f , 1.0f },
1977
+ {Float16_MAX_VALUEmm .floatValue (), 1.0f },
1978
+ {Float16 .MAX_VALUE .floatValue (), 1.0f },
1979
+ {infinityF16 .floatValue (), 1.0f }
1980
+ };
1981
+
1982
+ for (int i = 0 ; i < testCases .length ; i ++) {
1983
+ failures +=Tests .test ("Float16.signum(Float16)" ,
1984
+ Float16 .valueOf (testCases [i ][0 ]), Float16 .signum (Float16 .valueOf (testCases [i ][0 ])), Float16 .valueOf (testCases [i ][1 ]));
1985
+ }
1986
+
1987
+ return failures ;
1988
+ }
1989
+
1895
1990
public static int testFloatSignum () {
1896
1991
int failures = 0 ;
1897
1992
float testCases [][] = {
@@ -1981,6 +2076,7 @@ public static void main(String... argv) {
1981
2076
failures += testFloatBooleanMethods ();
1982
2077
failures += testDoubleBooleanMethods ();
1983
2078
2079
+ failures += testFloat16CopySign ();
1984
2080
failures += testFloatCopySign ();
1985
2081
failures += testDoubleCopySign ();
1986
2082
@@ -1991,6 +2087,7 @@ public static void main(String... argv) {
1991
2087
failures += testFloatUlp ();
1992
2088
failures += testDoubleUlp ();
1993
2089
2090
+ failures += testFloat16Signum ();
1994
2091
failures += testFloatSignum ();
1995
2092
failures += testDoubleSignum ();
1996
2093
0 commit comments