Skip to content

Commit 48bb0ce

Browse files
committed
comment result of last CI performance tests, use best choice
1 parent df68093 commit 48bb0ce

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/test/java/de/tilman_neumann/jml/factor/CombinedFactorAlgorithmTest.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ public class CombinedFactorAlgorithmTest {
3535
@BeforeClass
3636
public static void setup() {
3737
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;
3942
factorizer = new CombinedFactorAlgorithm(numThreads, null, true);
4043
}
4144

@@ -47,12 +50,12 @@ public void testSomeNumbers() {
4750
assertFactorizationSuccess("874186654300294020965320730991996026550891341278308", "2^2 * 3 * 471997 * 654743 * 2855761 * 79833227 * 982552477 * 1052328969055591"); // 170 bit
4851
assertFactorizationSuccess("11111111111111111111111111155555555555111111111111111", "67 * 157 * 1056289676880987842105819104055096069503860738769"); // 173 bit
4952
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
5154
assertFactorizationSuccess("99999999999999999999999999999999999999999999999999999999999999999999999", "3^2 * 241573142393627673576957439049 * 45994811347886846310221728895223034301839");
5255
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
5457
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
5659
assertFactorizationSuccess("1794577685365897117833870712928656282041295031283603412289229185967719140138841093599", "42181796536350966453737572957846241893933 * 42543889372264778301966140913837516662044603");
5760
}
5861

0 commit comments

Comments
 (0)