/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 Python 3 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 Python 3 program.

 Java 7 used what fraction? used how many times more? 
Benchmark Time Memory Code
 mandelbrot1/7310×±
 spectral-norm1/63
 fasta1/53
 n-body1/45±
 fannkuch-redux1/45
 binary-trees1/32±±
 k-nucleotide1/9±
 reverse-complement1/3±
 regex-dna±
 pidigits
 Java 7 used what fraction? used how many times more? 
Time-used  |-  |---  25% median  75%  ---|  -|
(Elapsed secs)1/731/731/531/371/3±

± 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 Python 3 program.

Program Source Code CPU secs Elapsed secs Memory KB Code B ≈ CPU Load
 mandelbrot 
Java 726.9226.9367,880796  0% 0% 0% 100%
Python 31,845.311,968.406,748777  1% 0% 0% 100%
 spectral-norm 
Java 716.1316.1414,924950  1% 0% 0% 100%
Python 31,018.201,018.445,208328  0% 0% 0% 100%
 fasta 
Java 74.924.9214,9321507  0% 1% 0% 100%
Python 3259.48262.344,672788  0% 1% 1% 100%
 n-body 
Java 724.4024.4113,9961424  0% 0% 0% 100%
Python 31,098.651,098.894,7001181  0% 0% 0% 100%
 fannkuch-redux 
Java 771.2671.2813,9361282  0% 0% 0% 100%
Python 32,903.203,204.314,564385  0% 0% 0% 100%
 binary-trees 
Java 715.7015.75506,592603  0% 1% 0% 100%
Python 3504.56504.93685,724626  0% 0% 0% 100%
 k-nucleotide 
Java 750.6950.73494,0401630  1% 0% 0% 100%
Python 3474.71474.95426,212647  1% 0% 0% 100%
 reverse-complement 
Java 71.881.92511,484745  2% 1% 3% 100%
Python 36.506.51616,588325  0% 0% 0% 100%
 regex-dna 
Java 722.6322.66557,0801284  0% 0% 0% 100%
Python 321.1321.14194,612424  0% 0% 0% 100%
 pidigits 
Java 77.337.3447,4401826  0% 0% 0% 100%
Python 33.063.065,408255  1% 0% 1% 100%
 fasta-redux 
Java 70.120.12?1443  0% 33% 0% 100%
No program

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

Remember - those are just the fastest Java 7 and Python 3 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 Python 3 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