|
| 1 | +/* |
| 2 | + * java-math-library is a Java library focused on number theory, but not necessarily limited to it. It is based on the PSIQS 4.0 factoring project. |
| 3 | + * Copyright (C) 2018-2024 Tilman Neumann - [email protected] |
| 4 | + * |
| 5 | + * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License |
| 6 | + * as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. |
| 7 | + * |
| 8 | + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
| 9 | + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
| 10 | + * |
| 11 | + * You should have received a copy of the GNU General Public License along with this program; |
| 12 | + * if not, see <http://www.gnu.org/licenses/>. |
| 13 | + */ |
| 14 | +package de.tilman_neumann.jml.quadraticResidues; |
| 15 | + |
| 16 | +import java.util.List; |
| 17 | +import java.util.TreeSet; |
| 18 | + |
| 19 | +import org.apache.logging.log4j.Logger; |
| 20 | +import org.apache.logging.log4j.LogManager; |
| 21 | + |
| 22 | +import de.tilman_neumann.util.ConfigUtil; |
| 23 | + |
| 24 | +/** |
| 25 | + * Test performance of quadratic residue computations modulo p^n. |
| 26 | + * |
| 27 | + * @author Tilman Neumann |
| 28 | + */ |
| 29 | +public class QuadraticResiduesModBPowNPerformanceTest { |
| 30 | + |
| 31 | + private static final Logger LOG = LogManager.getLogger(QuadraticResiduesModBPowNPerformanceTest.class); |
| 32 | + |
| 33 | + /** |
| 34 | + * Test. |
| 35 | + * @param args ignored |
| 36 | + */ |
| 37 | + private static void testPerformance(int p, int nMax) { |
| 38 | + ConfigUtil.initProject(); |
| 39 | + |
| 40 | + for (int n=0; n<=nMax; n++) { |
| 41 | + long m = (long) Math.pow(p, n); |
| 42 | + |
| 43 | + long t0, t1; |
| 44 | + t0 = System.currentTimeMillis(); |
| 45 | + TreeSet<Long> quadraticResiduesModPow = QuadraticResidues.getQuadraticResidues(m); |
| 46 | + t1 = System.currentTimeMillis(); |
| 47 | + LOG.info("v1: n = " + n + ": Computed " + quadraticResiduesModPow.size() + " quadratic residues mod " + p + "^" + n + " in " + (t1-t0) + "ms"); |
| 48 | + |
| 49 | + t0 = System.currentTimeMillis(); |
| 50 | + List<Long> quadraticResiduesModPow_v2 = QuadraticResiduesModBPowN.getQuadraticResiduesModBPowN(p, n); |
| 51 | + t1 = System.currentTimeMillis(); |
| 52 | + LOG.info("v2: n = " + n + ": Computed " + quadraticResiduesModPow_v2.size() + " quadratic residues mod " + p + "^" + n + " in " + (t1-t0) + "ms"); |
| 53 | + |
| 54 | + t0 = System.currentTimeMillis(); |
| 55 | + List<Long> quadraticResiduesModPow_v3 = QuadraticResiduesModBPowN.getQuadraticResiduesModBPowN_testAll(p, n); |
| 56 | + t1 = System.currentTimeMillis(); |
| 57 | + LOG.info("v3: n = " + n + ": Computed " + quadraticResiduesModPow_v3.size() + " quadratic residues mod " + p + "^" + n + " in " + (t1-t0) + "ms"); |
| 58 | + |
| 59 | + t0 = System.currentTimeMillis(); |
| 60 | + List<Long> quadraticResiduesModPow_v4 = QuadraticResiduesModBPowN.getQuadraticResiduesModBPowN_testAll_v2(p, n); |
| 61 | + t1 = System.currentTimeMillis(); |
| 62 | + LOG.info("v4: n = " + n + ": Computed " + quadraticResiduesModPow_v4.size() + " quadratic residues mod " + p + "^" + n + " in " + (t1-t0) + "ms"); |
| 63 | + } |
| 64 | + } |
| 65 | + |
| 66 | + /** |
| 67 | + * Test. |
| 68 | + * @param args ignored |
| 69 | + */ |
| 70 | + public static void main(String[] args) { |
| 71 | + ConfigUtil.initProject(); |
| 72 | + testPerformance(3, 16); |
| 73 | + testPerformance(5, 11); |
| 74 | + testPerformance(7, 9); |
| 75 | + } |
| 76 | +} |
0 commit comments