@@ -35,7 +35,10 @@ public class CombinedFactorAlgorithmTest {
35
35
@ BeforeClass
36
36
public static void setup () {
37
37
ConfigUtil .initProject ();
38
- int numThreads = 1 ; // be cautious regarding what github CI supports
38
+ // gitgub CI results for the 236 bit test number:
39
+ // 1 thread -> 22s, 2 threads -> 12s, 4 threads -> 14s.
40
+ // Using 2 threads looks best so far.
41
+ int numThreads = 2 ;
39
42
factorizer = new CombinedFactorAlgorithm (numThreads , null , true );
40
43
}
41
44
@@ -47,12 +50,12 @@ public void testSomeNumbers() {
47
50
assertFactorizationSuccess ("874186654300294020965320730991996026550891341278308" , "2^2 * 3 * 471997 * 654743 * 2855761 * 79833227 * 982552477 * 1052328969055591" ); // 170 bit
48
51
assertFactorizationSuccess ("11111111111111111111111111155555555555111111111111111" , "67 * 157 * 1056289676880987842105819104055096069503860738769" ); // 173 bit
49
52
assertFactorizationSuccess ("1388091470446411094380555803943760956023126025054082930201628998364642" , "2 * 3 * 1907 * 1948073 * 1239974331653 * 50222487570895420624194712095309533522213376829" ); // 230 bit
50
- // 236 bit, takes ~ 8 seconds with 2 threads
53
+ // 236 bit, takes ~ 8 seconds with 2 threads on Ryzen3900X
51
54
assertFactorizationSuccess ("99999999999999999999999999999999999999999999999999999999999999999999999" , "3^2 * 241573142393627673576957439049 * 45994811347886846310221728895223034301839" );
52
55
if (RUN_SLOW_TESTS_TOO ) {
53
- // 263 bit bit, takes ~ 52 seconds with 2 threads
56
+ // 263 bit bit, takes ~ 52 seconds with 2 threads on Ryzen3900X
54
57
assertFactorizationSuccess ("10000000000000000000000000000000000000000000000000000000000000000000000000005923" , "1333322076518899001350381760807974795003 * 7500063320115780212377802894180923803641" );
55
- // 280 bit bit, takes ~ 158 seconds with 2 threads
58
+ // 280 bit bit, takes ~ 158 seconds with 2 threads on Ryzen3900X
56
59
assertFactorizationSuccess ("1794577685365897117833870712928656282041295031283603412289229185967719140138841093599" , "42181796536350966453737572957846241893933 * 42543889372264778301966140913837516662044603" );
57
60
}
58
61
0 commit comments