私のミニベンチマーク:
import java.math.*;
import java.util.*;
import java.io.*;
public class c
{
static Random rnd = new Random();
public static String addDigits(String a, int n)
{
if(a==null) return null;
if(n<=0) return a;
for(int i=0; i<n; i++)
a+=rnd.nextInt(10);
return a;
}
public static void main(String[] args) throws IOException
{
int n = 10000; \\number of iterations
int k = 10; \\number of digits added at each iteration
BigInteger a;
BigInteger b;
String as = "";
String bs = "";
as += rnd.nextInt(9)+1;
bs += rnd.nextInt(9)+1;
a = new BigInteger(as);
b = new BigInteger(bs);
FileWriter fw = new FileWriter("c.txt");
long t1 = System.nanoTime();
a.multiply(b);
long t2 = System.nanoTime();
//fw.write("1,"+(t2-t1)+"\n");
if(k>0) {
as = addDigits(as, k-1);
bs = addDigits(as, k-1);
}
for(int i=0; i<n; i++)
{
a = new BigInteger(as);
b = new BigInteger(bs);
t1 = System.nanoTime();
a.multiply(b);
t2 = System.nanoTime();
fw.write(((i+1)*k)+","+(t2-t1)+"\n");
if(i < n-1)
{
as = addDigits(as, k);
bs = addDigits(as, k);
}
System.out.println((i+1)*k);
}
fw.close();
}
}
n桁のBigIntegerの乗算時間を測定します
結果:
傾向は簡単にわかりますが、なぜ50000桁を超える大きなノイズがあるのでしょうか。ガベージコレクターが原因ですか、それとも私の結果に影響を与える何か他のものがありますか?テストを実行したとき、他のアプリケーションは実行されていませんでした。
奇数桁のみのテストの結果。テストは短かった(n = 1000、k = 100)
奇数桁(n = 10000、k = 10)
ご覧のとおり、65000から70000の間に大きなノイズがあります。なぜだろう...
奇数桁(n = 10000、k = 10)、System.gc()
1000回の反復ごと
に50000〜70000のノイズが発生します