/mobile Handheld Friendly website

÷

 1 : Are the Java 7 programs faster? At a glance.

Each chart bar shows, for one unidentified benchmark, how much the fastest Java 7 program used compared to the fastest Lisp SBCL program.


These are not the only compilers and interpreters. These are not the only programs that could be written. These are not the only tasks that could be solved. These are just 10 tiny examples.

 2 : Are the Java 7 programs faster? Approximately.

Each table row shows, for one named benchmark, how much the fastest Java 7 program used compared to the fastest Lisp SBCL program.

 Java 7 used what fraction? used how many times more? 
Benchmark Time Memory Code
 k-nucleotide †1/5±
 fasta-redux1/5±
 reverse-complement †1/3
 mandelbrot1/21/3
 regex-dna1/2±1/2
 binary-trees †1/2
 fasta1/2±
 n-body1/2±
 spectral-norm±±
 fannkuch-redux±±±
 pidigits †10×
 Java 7 used what fraction? used how many times more? 
Time-used  |-  |---  25% median  75%  ---|  -|
(Elapsed secs)1/51/51/31/2±

† possible mismatch - one-core program compared to multi-core program.

± read the measurements and then read the program source code.

 3 : Are the Java 7 programs faster? Measurements.

These are not the only tasks that could be solved. These are just 10 tiny examples. These are not the only compilers and interpreters. These are not the only programs that could be written.

For each named benchmark, measurements of the fastest Java 7 program are shown for comparison against measurements of the fastest Lisp SBCL program.

Program Source Code CPU secs Elapsed secs Memory KB Code B ≈ CPU Load
 k-nucleotide 
Java 744.8312.93494,2641602  84% 81% 85% 99% †
Lisp SBCL69.1469.22105,2442272  0% 0% 0% 100% †
 fasta-redux 
Java 71.901.8514,5001443  1% 2% 3% 100%
Lisp SBCL9.249.259,3562005  0% 1% 0% 100%
 reverse-complement 
Java 72.931.52294,7841661  32% 59% 58% 47% †
Lisp SBCL4.784.79164,812896  0% 98% 2% 0% †
 mandelbrot 
Java 727.146.9067,612796  98% 98% 99% 99%
Lisp SBCL67.1316.9535,3002459  99% 99% 99% 99%
 regex-dna 
Java 727.099.43708,060929  65% 83% 78% 63%
Lisp SBCL46.1222.59946,4441948  35% 42% 43% 86%
 binary-trees 
Java 721.359.21525,4201007  50% 70% 48% 65% †
Lisp SBCL20.4120.45220,104649  83% 0% 18% 0% †
 fasta 
Java 75.074.9914,9761507  2% 0% 100% 1%
Lisp SBCL8.178.188,2721751  0% 0% 0% 100%
 n-body 
Java 724.4124.3913,9761424  0% 0% 0% 100%
Lisp SBCL37.5537.564,0881398  0% 0% 0% 100%
 spectral-norm 
Java 716.394.2114,740950  97% 97% 98% 99%
Lisp SBCL15.754.024,488906  98% 98% 99% 98%
 fannkuch-redux 
Java 767.9117.1714,4601282  98% 99% 100% 100%
Lisp SBCL57.3014.7714,1121518  98% 99% 97% 94%
 pidigits 
Java 711.755.1246,4881826  70% 67% 56% 39% †
Lisp SBCL2.762.774,8841073  1% 0% 0% 100% †

† possible mismatch - one-core program compared to multi-core program.

 4 : Are there other Java 7 programs for these benchmarks?

Remember - those are just the fastest Java 7 and Lisp SBCL programs measured on this OS/machine. Check if there are other implementations of these benchmark programs for Java 7.

Maybe one of those other Java 7 programs is fastest on a different OS/machine.

 5 : Are there other faster programs for these benchmarks?

Remember - those are just the fastest Java 7 and Lisp SBCL programs measured on this OS/machine. Check if there are faster implementations of these benchmark programs for other programming languages.

Maybe one of those other programs is fastest on a different OS/machine.

 Java 7 : ubiquitous jit server virtual machine 

java version "1.7.0_11"
Java(TM) SE Runtime Environment (build 1.7.0_11-b21)
Java HotSpot(TM) Server VM (build 23.6-b04, mixed mode)

Home Page: Java SE at a Glance

Download: Java SE Downloads

Let's see how much, or how little, the time taken to invoke the JVM might contribute to the usual Java program times shown in the benchmarks game. Here are some additional (Intel® Q6600® quad-core) elapsed time measurements, taken after the Java programs started and before they exited.

In the first case (Cold), we simply started and measured the program 66 times; and then discarded the first measurement leaving 65 data points.

   public static void main(String[] args){
      for (int i=0; i<1; ++i){ 
         System.gc(); 
         long t1 = System.nanoTime();
         nbody.program_main(args);
         long t2 = System.nanoTime();
         System.err.println( String.format( "%.6f", (t2 - t1) * 1e-9 ) );         
      }
   }

In the second case (Warmed), we started the program once and repeated measurements again and again and again 66 times without restarting the JVM; and then discarded the first measurement leaving 65 data points.

   public static void main(String[] args){
      for (int i=0; i<66; ++i){ 
         System.gc(); 
         long t1 = System.nanoTime();
         nbody.program_main(args);
         long t2 = System.nanoTime();
         System.err.println( String.format( "%.6f", (t2 - t1) * 1e-9 ) );         
      }
   }

Compare these additional measurements against the usual Java program measurements shown in the benchmarks game --

"1.7.0_06" Java HotSpot(TM) 64-Bit Server VM
System.nanoTime()  1) Cold   2) Warmed   
  mean σ mean σ   usual
meteor contest   0.0118s 0.0007 0.0016s 0.0002 0.22s
fasta-redux   2.45s 0.00 2.32s 0.00 2.51s
spectral-norm   4.44s 0.02 4.20s 0.16 4.51s
pidigits   4.69s 0.09 4.44s 0.05 4.61s
fasta   5.07s 0.46 4.84s 0.02 5.13s
chameneos-redux   5.84s 0.46 5.70s 0.48 5.65s
mandelbrot   7.93s 0.23 7.99s 0.01 7.02s
k-nucleotide   8.09s 0.28  --   --  8.05s
regex-dna   8.65s 0.27  --   --  8.61s
binary-trees   10.54s 0.28 7.66s 0.16 9.08s
fannkuch-redux   16.89s 1.32 17.26s 0.10 17.38s
nbody   22.43s 0.00 22.41s 0.00 22.50s
binary-trees-redux   34.15s 0.39 33.93s 0.31 33.38s

The largest and most obvious effects of bytecode loading and dynamic optimization can be seen with the meteor-contest program which only runs for a fraction of a second.

Revised BSD license

  Home   Conclusions   License   Play