Skip to content
Snippets Groups Projects
mandelbrot.html 30.4 KiB
Newer Older
Isaac Gouy's avatar
Isaac Gouy committed
<!DOCTYPE html>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="robots" content="all">
Isaac Gouy's avatar
Isaac Gouy committed
<meta name="description" content="mandelbrot — How fast programs generate a Mandelbrot set and write a portable bitmap.">
Isaac Gouy's avatar
Isaac Gouy committed
<title>mandelbrot | Computer Language Benchmarks Game </title>
<style><!--
Isaac Gouy's avatar
Isaac Gouy committed
a{color:black;text-decoration:none}article,footer{padding:0 0 2.9em}article,div,footer,header{margin:auto;width:92%}body{font:100% Droid Sans, Ubuntu, Verdana, sans-serif;margin:0;-webkit-text-size-adjust:100%}h3, h1, h2, li a{font-family:Ubuntu Mono,Consolas,Menlo,monospace}div,footer,header{max-width:31em}h3{font-size:1.4em;font-weight:bold;margin:0;padding: .4em}h3, h3 a{color:white;background-color:#77216f}h3 small{font-size:0.64em}h1,h2{margin:1.5em 0 0}h1{font-size:1.4em;font-weight:normal}h2{font-size:1.2em}li{list-style-type:none}li a{display:block;font-size:1.2em;margin: .5em .5em 0;padding: .5em .5em .3em}ul{clear:left;margin:-0.3em 0 1.5em;padding-left:0;text-align:center}p{color:#333;line-height:1.4;margin: .3em 0 0}.external{border-bottom:.1em dashed #333}p a,span{border-bottom: .1em solid #333;padding-bottom: .1em}.best{font-weight:bold}.message{font-size: .8em}table{color:#333;margin:1.3em auto 0;text-align:right}tbody::after{content:"-";display:block;line-height:2.6em;visibility:hidden}td{border-bottom: .15em dotted #eee;padding: .7em 0 0 1em}td a, th a{display:block}th{font-weight:normal;padding:0 0 0 1em}td:first-child{padding-left:0}td:nth-child(2),th:nth-child(2){text-align:left}
Isaac Gouy's avatar
Isaac Gouy committed

@media only screen{th:nth-child(1),td:nth-child(1),th:nth-child(4),td:nth-child(4),th:nth-child(5),td:nth-child(5),th:nth-child(6),td:nth-child(6),th:nth-child(7),td:nth-child(7){display:none}}
@media only screen and (min-width:23em){th:nth-child(1),td:nth-child(1){display:table-cell}}@media only screen and (min-width:37em){th:nth-child(3),td:nth-child(3),th:nth-child(4),td:nth-child(4),th:nth-child(5),td:nth-child(5),th:nth-child(6),td:nth-child(6){display:table-cell}li{display:inline-block}}@media only screen and (min-width:43em){th:nth-child(7),td:nth-child(7){display:table-cell}}@media only screen and (min-width:60em){article,footer,header{font-size:1.25em}}
--></style>
<link rel="shortcut icon" href="../favicon.ico">
<header>
Isaac Gouy's avatar
Isaac Gouy committed
  <h3><a href="https://benchmarksgame-team.pages.debian.net/benchmarksgame/index.html">The&nbsp;<small>Computer&nbsp;Language</small><br>22.01 Benchmarks&nbsp;Game</a></h3>
Isaac Gouy's avatar
Isaac Gouy committed
</header>
<article>
  <div>
    <h1>mandelbrot</h1>
Isaac Gouy's avatar
Isaac Gouy committed
    <aside>
      <p><a href="../description/mandelbrot.html#mandelbrot">description</a>
    </aside>
Isaac Gouy's avatar
Isaac Gouy committed
  </div>
  <section>
    <div>
      <h2></h2>
        <p>Always look at the source code.  
Isaac Gouy's avatar
Isaac Gouy committed
        <p>Look at the slower simple sequential programs, <em>and</em>&nbsp; look at the parallel programs written for multicore, <em>and</em>&nbsp; look at the manually vectorized SIMD programs. Choose which you want to compare.
Isaac Gouy's avatar
Isaac Gouy committed
                
Isaac Gouy's avatar
Isaac Gouy committed
      <h2></h2>
    </div>
    <table>
      <tr>
        <th>&#215;
        <th>source
        <th class="best">secs
        <th><a href="./mandelbrot-mem.html"><span>mem</span></a>
        <th><a href="./mandelbrot-gz.html"><span>gz</span></a>
        <th><a href="./mandelbrot-cpu.html"><span>busy</span></a>
        <th>cpu load
      <tr>
        <td>1.0
        <td><a href="../program/mandelbrot-gpp-4.html"><span><strong>C++</strong>&nbsp;g++&nbsp;#4</span></a>
        <td class="best">0.84
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34,800
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3542
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.28
        <td class="message">98%&nbsp;99%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.1
        <td><a href="../program/mandelbrot-gpp-1.html"><span>C++ g++</span></a>
        <td>0.89
Isaac Gouy's avatar
Isaac Gouy committed
        <td>32,220
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1791
        <td>3.48
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">97%&nbsp;99%&nbsp;97%&nbsp;97%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.1
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-rust-7.html"><span><strong>Rust</strong>&nbsp;#7</span></a>
        <td class="best">0.91
Isaac Gouy's avatar
Isaac Gouy committed
        <td>32,676
Isaac Gouy's avatar
Isaac Gouy committed
        <td>757
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.63
        <td class="message">100%&nbsp;99%&nbsp;99%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.1
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-rust-8.html"><span>Rust&nbsp;#8</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>0.93
        <td>32,028
Isaac Gouy's avatar
Isaac Gouy committed
        <td>763
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.69
        <td class="message">100%&nbsp;100%&nbsp;99%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.2
        <td><a href="../program/mandelbrot-gpp-6.html"><span>C++ g++&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>0.98
        <td>31,692
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1002
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.89
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.3
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-rust-5.html"><span>Rust&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.08
        <td>33,724
Isaac Gouy's avatar
Isaac Gouy committed
        <td>719
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.20
        <td class="message">96%&nbsp;98%&nbsp;96%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.3
        <td><a href="../program/mandelbrot-rust-6.html"><span>Rust&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.09
        <td>33,780
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1332
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.30
        <td class="message">99%&nbsp;100%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.5
        <td><a href="../program/mandelbrot-gcc-6.html"><span><strong>C</strong>&nbsp;gcc&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">1.30
        <td>30,924
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1135
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.18
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.6
        <td><a href="../program/mandelbrot-swift-7.html"><span><strong>Swift</strong>&nbsp;#7</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">1.36
        <td>41,876
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1140
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.44
        <td class="message">100%&nbsp;99%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.7
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-swift-6.html"><span>Swift&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.38
        <td>43,884
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1141
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.51
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;99%&nbsp;99%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.7
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-ifc-8.html"><span>Classic&nbsp;<strong>Fortran</strong>&nbsp;#8</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">1.41
        <td>36,008
        <td>957
        <td>5.59
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.7
        <td><a href="../program/mandelbrot-julia-7.html"><span><strong>Julia</strong>&nbsp;#7</span></a>
        <td class="best">1.42
        <td>236,720
        <td>619
        <td>5.08
        <td class="message">87%&nbsp;87%&nbsp;87%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.7
        <td><a href="../program/mandelbrot-rust-3.html"><span>Rust&nbsp;#3</span></a>
        <td>1.42
        <td>13,208
        <td>1007
        <td>5.66
        <td class="message">100%&nbsp;99%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.7
        <td><a href="../program/mandelbrot-julia-8.html"><span>Julia&nbsp;#8</span></a>
        <td>1.46
        <td>236,608
        <td>624
        <td>5.24
        <td class="message">86%&nbsp;86%&nbsp;99%&nbsp;87%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>1.8
        <td><a href="../program/mandelbrot-ghc-3.html"><span><strong>Haskell</strong>&nbsp;GHC&nbsp;#3</span></a>
        <td class="best">1.48
        <td>51,352
        <td>1981
        <td>5.81
        <td class="message">99%&nbsp;99%&nbsp;98%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.9
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-julia-5.html"><span>Julia&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1.62
        <td>275,428
Isaac Gouy's avatar
Isaac Gouy committed
        <td>571
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.96
        <td class="message">89%&nbsp;99%&nbsp;90%&nbsp;90%
      <tr>
        <td>2.4
        <td><a href="../program/mandelbrot-julia-6.html"><span>Julia&nbsp;#6</span></a>
        <td>2.03
        <td>265,020
        <td>562
        <td>5.89
        <td class="message">90%&nbsp;60%&nbsp;50%&nbsp;91%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>2.5
        <td><a href="../program/mandelbrot-julia-3.html"><span>Julia&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>2.10
        <td>273,092
Isaac Gouy's avatar
Isaac Gouy committed
        <td>579
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.80
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">91%&nbsp;91%&nbsp;90%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.2
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-julia-4.html"><span>Julia&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>2.70
        <td>270,136
Isaac Gouy's avatar
Isaac Gouy committed
        <td>574
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.71
        <td class="message">91%&nbsp;91%&nbsp;55%&nbsp;48%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.5
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-rust-1.html"><span>Rust</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>2.96
        <td>38,800
Isaac Gouy's avatar
Isaac Gouy committed
        <td>868
Isaac Gouy's avatar
Isaac Gouy committed
        <td>11.60
        <td class="message">99%&nbsp;99%&nbsp;96%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.7
        <td><a href="../program/mandelbrot-csharpcore-9.html"><span><strong>C#</strong>&nbsp;.NET&nbsp;#9</span></a>
        <td class="best">3.11
        <td>65,960
        <td>816
        <td>12.18
        <td class="message">97%&nbsp;99%&nbsp;98%&nbsp;97%
      <tr>
        <td>3.7
        <td><a href="../program/mandelbrot-csharpcore-1.html"><span>C# .NET</span></a>
        <td>3.11
        <td>66,112
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1974
Isaac Gouy's avatar
Isaac Gouy committed
        <td>12.18
        <td class="message">99%&nbsp;97%&nbsp;97%&nbsp;97%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.7
        <td><a href="../program/mandelbrot-gcc-8.html"><span>C gcc&nbsp;#8</span></a>
        <td>3.13
        <td>32,816
        <td>782
        <td>12.12
        <td class="message">99%&nbsp;94%&nbsp;100%&nbsp;94%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>3.8
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-ifc-6.html"><span>Classic Fortran&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.23
        <td>75,920
Isaac Gouy's avatar
Isaac Gouy committed
        <td>661
Isaac Gouy's avatar
Isaac Gouy committed
        <td>10.79
        <td class="message">77%&nbsp;78%&nbsp;80%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.0
        <td><a href="../program/mandelbrot-chapel-3.html"><span><strong>Chapel</strong>&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">3.32
        <td>36,196
Isaac Gouy's avatar
Isaac Gouy committed
        <td>588
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.14
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
      <tr>
        <td>4.1
        <td><a href="../program/mandelbrot-gcc-4.html"><span>C gcc&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.47
        <td>32,808
Isaac Gouy's avatar
Isaac Gouy committed
        <td>799
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.85
        <td class="message">100%&nbsp;100%&nbsp;99%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.2
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-gpp-7.html"><span>C++ g++&nbsp;#7</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.49
        <td>34,664
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1017
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.89
        <td class="message">99%&nbsp;99%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.2
        <td><a href="../program/mandelbrot-gcc-1.html"><span>C gcc</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.50
        <td>29,224
Isaac Gouy's avatar
Isaac Gouy committed
        <td>822
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.96
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.2
        <td><a href="../program/mandelbrot-gcc-7.html"><span>C gcc&nbsp;#7</span></a>
        <td>3.50
        <td>33,092
        <td>994
        <td>13.97
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.2
        <td><a href="../program/mandelbrot-gpp-9.html"><span>C++ g++&nbsp;#9</span></a>
        <td>3.50
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34,392
Isaac Gouy's avatar
Isaac Gouy committed
        <td>726
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.48
        <td class="message">99%&nbsp;95%&nbsp;95%&nbsp;95%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.2
        <td><a href="../program/mandelbrot-gcc-3.html"><span>C gcc&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.52
        <td>30,032
Isaac Gouy's avatar
Isaac Gouy committed
        <td>763
Isaac Gouy's avatar
Isaac Gouy committed
        <td>14.07
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.4
        <td><a href="../program/mandelbrot-fsharpcore-6.html"><span><strong>F#</strong>&nbsp;.NET&nbsp;#6</span></a>
        <td class="best">3.72
        <td>65,928
        <td>933
        <td>14.61
        <td class="message">98%&nbsp;99%&nbsp;98%&nbsp;98%
      <tr>
        <td>4.4
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-go-4.html"><span><strong>Go</strong>&nbsp;#4</span></a>
        <td class="best">3.73
Isaac Gouy's avatar
Isaac Gouy committed
        <td>33,904
Isaac Gouy's avatar
Isaac Gouy committed
        <td>905
Isaac Gouy's avatar
Isaac Gouy committed
        <td>14.86
        <td class="message">100%&nbsp;99%&nbsp;99%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.5
        <td><a href="../program/mandelbrot-go-3.html"><span>Go&nbsp;#3</span></a>
        <td>3.75
Isaac Gouy's avatar
Isaac Gouy committed
        <td>33,600
Isaac Gouy's avatar
Isaac Gouy committed
        <td>894
Isaac Gouy's avatar
Isaac Gouy committed
        <td>14.94
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.6
        <td><a href="../program/mandelbrot-fpascal-8.html"><span>Free&nbsp;<strong>Pascal</strong>&nbsp;#8</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">3.89
        <td>31,316
        <td>952
        <td>15.49
        <td class="message">99%&nbsp;100%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.7
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-fsharpcore-5.html"><span>F# .NET&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.96
        <td>66,084
Isaac Gouy's avatar
Isaac Gouy committed
        <td>897
Isaac Gouy's avatar
Isaac Gouy committed
        <td>15.58
        <td class="message">98%&nbsp;99%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.8
        <td><a href="../program/mandelbrot-fsharpcore-1.html"><span>F# .NET</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>3.99
        <td>66,172
Isaac Gouy's avatar
Isaac Gouy committed
        <td>877
Isaac Gouy's avatar
Isaac Gouy committed
        <td>15.70
        <td class="message">99%&nbsp;98%&nbsp;98%&nbsp;99%
      <tr>
        <td>4.8
        <td><a href="../program/mandelbrot-gnat-3.html"><span><strong>Ada</strong>&nbsp;2012&nbsp;GNAT&nbsp;#3</span></a>
        <td class="best">4.04
        <td>35,632
        <td>1819
        <td>15.93
        <td class="message">97%&nbsp;100%&nbsp;99%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.8
        <td><a href="../program/mandelbrot-node-3.html"><span><strong>Node js</strong>&nbsp;#3</span></a>
        <td class="best">4.04
Isaac Gouy's avatar
Isaac Gouy committed
        <td>101,228
Isaac Gouy's avatar
Isaac Gouy committed
        <td>1122
Isaac Gouy's avatar
Isaac Gouy committed
        <td>15.90
        <td class="message">99%&nbsp;98%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>4.9
        <td><a href="../program/mandelbrot-java-2.html"><span><strong>Java</strong>&nbsp;&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">4.10
        <td>70,448
Isaac Gouy's avatar
Isaac Gouy committed
        <td>796
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.11
        <td class="message">99%&nbsp;98%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.9
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-csharpcore-5.html"><span>C# .NET&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.11
        <td>64,520
Isaac Gouy's avatar
Isaac Gouy committed
        <td>839
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.17
        <td class="message">99%&nbsp;99%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>5.0
        <td><a href="../program/mandelbrot-gcc-9.html"><span>C gcc&nbsp;#9</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.15
        <td>33,104
Isaac Gouy's avatar
Isaac Gouy committed
        <td>694
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.13
        <td class="message">98%&nbsp;100%&nbsp;96%&nbsp;96%
      <tr>
        <td>5.0
        <td><a href="../program/mandelbrot-sbcl-4.html"><span><strong>Lisp</strong>&nbsp;SBCL&nbsp;#4</span></a>
        <td class="best">4.17
        <td>46,584
        <td>2447
        <td>16.63
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>5.1
        <td><a href="../program/mandelbrot-java-6.html"><span>Java&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.30
Isaac Gouy's avatar
Isaac Gouy committed
        <td>69,520
Isaac Gouy's avatar
Isaac Gouy committed
        <td>802
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.95
        <td class="message">98%&nbsp;99%&nbsp;98%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>5.3
        <td><a href="../program/mandelbrot-java-4.html"><span>Java&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.41
        <td>67,684
Isaac Gouy's avatar
Isaac Gouy committed
        <td>660
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.12
        <td class="message">96%&nbsp;98%&nbsp;87%&nbsp;84%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.6
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-sbcl-1.html"><span>Lisp SBCL</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4.73
        <td>46,596
Isaac Gouy's avatar
Isaac Gouy committed
        <td>2473
Isaac Gouy's avatar
Isaac Gouy committed
        <td>16.51
        <td class="message">74%&nbsp;99%&nbsp;100%&nbsp;76%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>5.7
        <td><a href="../program/mandelbrot-gpp-8.html"><span>C++ g++&nbsp;#8</span></a>
        <td>4.81
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34,396
Isaac Gouy's avatar
Isaac Gouy committed
        <td>742
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.21
        <td class="message">38%&nbsp;38%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>6.9
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-go-1.html"><span>Go</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>5.75
        <td>33,712
Isaac Gouy's avatar
Isaac Gouy committed
        <td>823
Isaac Gouy's avatar
Isaac Gouy committed
        <td>22.84
        <td class="message">99%&nbsp;99%&nbsp;100%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>7.8
        <td><a href="../program/mandelbrot-fpascal-7.html"><span>Free Pascal&nbsp;#7</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>6.52
        <td>36,816
        <td>924
        <td>26.05
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.8
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-ghc-2.html"><span>Haskell GHC&nbsp;#2</span></a>
        <td>6.57
Isaac Gouy's avatar
Isaac Gouy committed
        <td>45,436
Isaac Gouy's avatar
Isaac Gouy committed
        <td>782
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.24
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>8.0
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-chapel-1.html"><span>Chapel</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>6.73
        <td>36,220
Isaac Gouy's avatar
Isaac Gouy committed
        <td>460
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.75
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;99%&nbsp;99%&nbsp;99%
      <tr>
        <td>8.1
        <td><a href="../program/mandelbrot-go-2.html"><span>Go&nbsp;#2</span></a>
        <td>6.79
Isaac Gouy's avatar
Isaac Gouy committed
        <td>33,032
Isaac Gouy's avatar
Isaac Gouy committed
        <td>837
Isaac Gouy's avatar
Isaac Gouy committed
        <td>27.10
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>8.2
        <td><a href="../program/mandelbrot-go-6.html"><span>Go&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>6.84
        <td>32,524
Isaac Gouy's avatar
Isaac Gouy committed
        <td>700
Isaac Gouy's avatar
Isaac Gouy committed
        <td>27.28
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>8.7
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-swift-5.html"><span>Swift&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.30
        <td>41,576
Isaac Gouy's avatar
Isaac Gouy committed
        <td>659
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.96
        <td class="message">90%&nbsp;90%&nbsp;90%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>8.8
        <td><a href="../program/mandelbrot-java-3.html"><span>Java&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.35
Isaac Gouy's avatar
Isaac Gouy committed
        <td>70,168
Isaac Gouy's avatar
Isaac Gouy committed
        <td>903
Isaac Gouy's avatar
Isaac Gouy committed
        <td>29.09
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>8.8
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-fpascal-6.html"><span>Free Pascal&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>7.41
        <td>35,772
        <td>781
        <td>29.59
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>9.0
        <td><a href="../program/mandelbrot-ocaml-1.html"><span><strong>OCaml</strong></span></a>
        <td class="best">7.53
Isaac Gouy's avatar
Isaac Gouy committed
        <td>4,716
Isaac Gouy's avatar
Isaac Gouy committed
        <td>717
Isaac Gouy's avatar
Isaac Gouy committed
        <td>30.05
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>9.6
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-dartexe-3.html"><span><strong>Dart</strong>&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">8.04
        <td>43,084
Isaac Gouy's avatar
Isaac Gouy committed
        <td>957
Isaac Gouy's avatar
Isaac Gouy committed
        <td>31.85
        <td class="message">100%&nbsp;99%&nbsp;99%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>12
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-ifc-4.html"><span>Classic Fortran&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>10.30
        <td>75,768
Isaac Gouy's avatar
Isaac Gouy committed
        <td>618
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.72
        <td class="message">92%&nbsp;91%&nbsp;33%&nbsp;43%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>12
        <td><a href="../program/mandelbrot-racket-4.html"><span><strong>Racket</strong>&nbsp;#4</span></a>
        <td class="best">10.44
Isaac Gouy's avatar
Isaac Gouy committed
        <td>126,208
Isaac Gouy's avatar
Isaac Gouy committed
        <td>801
Isaac Gouy's avatar
Isaac Gouy committed
        <td>41.19
        <td class="message">98%&nbsp;100%&nbsp;98%&nbsp;98%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>13
        <td><a href="../program/mandelbrot-fpascal-2.html"><span>Free Pascal&nbsp;#2</span></a>
        <td>10.97
Isaac Gouy's avatar
Isaac Gouy committed
        <td>32,964
        <td>825
        <td>29.44
        <td class="message">94%&nbsp;44%&nbsp;37%&nbsp;94%
      <tr>
        <td>13
        <td><a href="../program/mandelbrot-fpascal-1.html"><span>Free Pascal</span></a>
        <td>11.01
        <td>32,964
        <td>825
        <td>29.77
        <td class="message">38%&nbsp;94%&nbsp;45%&nbsp;94%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>13
        <td><a href="../program/mandelbrot-sbcl-3.html"><span>Lisp SBCL&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>11.07
        <td>50,660
Isaac Gouy's avatar
Isaac Gouy committed
        <td>894
Isaac Gouy's avatar
Isaac Gouy committed
        <td>29.68
        <td class="message">100%&nbsp;34%&nbsp;100%&nbsp;34%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>14
        <td><a href="../program/mandelbrot-dartexe-2.html"><span>Dart&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>11.74
        <td>89,416
Isaac Gouy's avatar
Isaac Gouy committed
        <td>907
Isaac Gouy's avatar
Isaac Gouy committed
        <td>31.63
        <td class="message">35%&nbsp;99%&nbsp;35%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>16
        <td><a href="../program/mandelbrot-gpp-5.html"><span>C++ g++&nbsp;#5</span></a>
        <td>13.36
Isaac Gouy's avatar
Isaac Gouy committed
        <td>33,624
Isaac Gouy's avatar
Isaac Gouy committed
        <td>590
Isaac Gouy's avatar
Isaac Gouy committed
        <td>13.43
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">0%&nbsp;0%&nbsp;100%&nbsp;0%
      <tr>
        <td>21
        <td><a href="../program/mandelbrot-gpp-2.html"><span>C++ g++&nbsp;#2</span></a>
        <td>17.46
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34,212
Isaac Gouy's avatar
Isaac Gouy committed
        <td>692
Isaac Gouy's avatar
Isaac Gouy committed
        <td>17.49
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>28
        <td><a href="../program/mandelbrot-php-3.html"><span><strong>PHP</strong>&nbsp;#3</span></a>
        <td class="best">23.26
        <td>142,252
        <td>875
        <td>92.82
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>30
        <td><a href="../program/mandelbrot-gcc-2.html"><span>C gcc&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>25.29
        <td>1,040
Isaac Gouy's avatar
Isaac Gouy committed
        <td>400
Isaac Gouy's avatar
Isaac Gouy committed
        <td>25.54
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">0%&nbsp;0%&nbsp;1%&nbsp;100%
      <tr>
        <td>31
        <td><a href="../program/mandelbrot-swift-1.html"><span>Swift</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.23
        <td>6,324
Isaac Gouy's avatar
Isaac Gouy committed
        <td>394
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.34
        <td class="message">0%&nbsp;0%&nbsp;11%&nbsp;89%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>32
        <td><a href="../program/mandelbrot-fpascal-3.html"><span>Free Pascal&nbsp;#3</span></a>
        <td>26.52
        <td>8
        <td>526
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.60
        <td class="message">100%&nbsp;0%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>32
        <td><a href="../program/mandelbrot-julia-1.html"><span>Julia</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>26.83
        <td>211,684
Isaac Gouy's avatar
Isaac Gouy committed
        <td>373
Isaac Gouy's avatar
Isaac Gouy committed
        <td>27.18
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;1%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>33
        <td><a href="../program/mandelbrot-java-1.html"><span>Java</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>27.73
        <td>36,180
Isaac Gouy's avatar
Isaac Gouy committed
        <td>665
Isaac Gouy's avatar
Isaac Gouy committed
        <td>27.88
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>34
        <td><a href="../program/mandelbrot-ocaml-6.html"><span>OCaml&nbsp;#6</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.21
        <td>3,244
Isaac Gouy's avatar
Isaac Gouy committed
        <td>444
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.25
        <td class="message">0%&nbsp;0%&nbsp;100%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>34
        <td><a href="../program/mandelbrot-gnat-2.html"><span>Ada 2012 GNAT&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.29
        <td>2,168
Isaac Gouy's avatar
Isaac Gouy committed
        <td>577
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.46
        <td class="message">0%&nbsp;0%&nbsp;100%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>34
        <td><a href="../program/mandelbrot-gpp-3.html"><span>C++ g++&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.50
        <td>1,940
Isaac Gouy's avatar
Isaac Gouy committed
        <td>414
Isaac Gouy's avatar
Isaac Gouy committed
        <td>28.64
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>41
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-racket-3.html"><span>Racket&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34.64
        <td>66,792
Isaac Gouy's avatar
Isaac Gouy committed
        <td>802
Isaac Gouy's avatar
Isaac Gouy committed
        <td>34.88
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>47
        <td><a href="../program/mandelbrot-ghc-1.html"><span>Haskell GHC</span></a>
        <td>39.72
        <td>517,328
        <td>621
        <td>40.70
        <td class="message">1%&nbsp;13%&nbsp;1%&nbsp;87%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>53
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-ifc-5.html"><span>Classic Fortran&nbsp;#5</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>44.44
        <td>43,712
Isaac Gouy's avatar
Isaac Gouy committed
        <td>520
Isaac Gouy's avatar
Isaac Gouy committed
        <td>44.61
        <td class="message">0%&nbsp;0%&nbsp;100%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>53
        <td><a href="../program/mandelbrot-erlang-3.html"><span><strong>Erlang</strong>&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">44.65
        <td>68,108
Isaac Gouy's avatar
Isaac Gouy committed
        <td>792
Isaac Gouy's avatar
Isaac Gouy committed
        <td>178.26
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>54
        <td><a href="../program/mandelbrot-erlang-4.html"><span>Erlang&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>45.00
        <td>69,556
Isaac Gouy's avatar
Isaac Gouy committed
        <td>806
Isaac Gouy's avatar
Isaac Gouy committed
        <td>179.69
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>55
        <td><a href="../program/mandelbrot-erlang-2.html"><span>Erlang&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>46.10
        <td>764,068
Isaac Gouy's avatar
Isaac Gouy committed
        <td>613
Isaac Gouy's avatar
Isaac Gouy committed
        <td>183.11
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
      <tr>
        <td>58
        <td><a href="../program/mandelbrot-erlang-1.html"><span>Erlang</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>48.95
        <td>1,633,584
Isaac Gouy's avatar
Isaac Gouy committed
        <td>534
Isaac Gouy's avatar
Isaac Gouy committed
        <td>190.00
        <td class="message">96%&nbsp;98%&nbsp;97%&nbsp;97%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>59
        <td><a href="../program/mandelbrot-racket-1.html"><span>Racket</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>49.21
        <td>68,204
Isaac Gouy's avatar
Isaac Gouy committed
        <td>517
Isaac Gouy's avatar
Isaac Gouy committed
        <td>49.46
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>61
        <td><a href="../program/mandelbrot-racket-2.html"><span>Racket&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>51.15
        <td>67,024
Isaac Gouy's avatar
Isaac Gouy committed
        <td>585
Isaac Gouy's avatar
Isaac Gouy committed
        <td>51.41
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
      <tr>
        <td>93
        <td><a href="../program/mandelbrot-lua-6.html"><span><strong>Lua</strong>&nbsp;#6</span></a>
        <td class="best">77.98
        <td>19,652
        <td>623
        <td>281.69
        <td class="message">100%&nbsp;90%&nbsp;85%&nbsp;86%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>104
        <td><a href="../program/mandelbrot-php-1.html"><span>PHP</span></a>
        <td>86.92
        <td>13,396
        <td>449
        <td>87.41
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>120
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-vw-2.html"><span>VW&nbsp;<strong>Smalltalk</strong>&nbsp;#2</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">100.44
        <td>177,388
Isaac Gouy's avatar
Isaac Gouy committed
        <td>929
        <td>5&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">95%&nbsp;88%&nbsp;76%&nbsp;86%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>212
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-python3-7.html"><span><strong>Python&nbsp;3</strong>&nbsp;#7</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">177.35
        <td>47,780
Isaac Gouy's avatar
Isaac Gouy committed
        <td>688
Isaac Gouy's avatar
Isaac Gouy committed
        <td>11&nbsp;min
        <td class="message">99%&nbsp;99%&nbsp;99%&nbsp;99%
      <tr>
        <td>215
        <td><a href="../program/mandelbrot-ruby-5.html"><span><strong>Ruby</strong>&nbsp;#5</span></a>
        <td class="best">180.18
        <td>322,648
        <td>970
        <td>11&nbsp;min
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>273
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-lua-3.html"><span>Lua&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>228.64
        <td>2,640
Isaac Gouy's avatar
Isaac Gouy committed
        <td>358
Isaac Gouy's avatar
Isaac Gouy committed
        <td>230.16
        <td class="message">0%&nbsp;100%&nbsp;0%&nbsp;0%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>277
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-lua-1.html"><span>Lua</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>231.99
        <td>2,636
Isaac Gouy's avatar
Isaac Gouy committed
        <td>359
Isaac Gouy's avatar
Isaac Gouy committed
        <td>233.47
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
      <tr>
        <td>313
        <td><a href="../program/mandelbrot-lua-2.html"><span>Lua&nbsp;#2</span></a>
        <td>262.15
        <td>1,516
        <td>367
        <td>264.02
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>324
        <td><a href="../program/mandelbrot-ruby-2.html"><span>Ruby&nbsp;#2</span></a>
        <td>271.60
        <td>348,392
Isaac Gouy's avatar
Isaac Gouy committed
        <td>880
Isaac Gouy's avatar
Isaac Gouy committed
        <td>18&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>383
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-vw-1.html"><span>VW Smalltalk</span></a>
        <td>5&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td>54,440
Isaac Gouy's avatar
Isaac Gouy committed
        <td>603
        <td>5&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">2%&nbsp;48%&nbsp;7%&nbsp;43%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>560
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-perl-1.html"><span><strong>Perl</strong></span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="best">7&nbsp;min
        <td>56,268
Isaac Gouy's avatar
Isaac Gouy committed
        <td>586
Isaac Gouy's avatar
Isaac Gouy committed
        <td>31&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-ruby-4.html"><span>Ruby&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>14&nbsp;min
        <td>408,488
        <td>857
        <td>14&nbsp;min
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">25%&nbsp;25%&nbsp;25%&nbsp;25%
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-ruby-3.html"><span>Ruby&nbsp;#3</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td>24&nbsp;min
        <td>285,800
Isaac Gouy's avatar
Isaac Gouy committed
        <td>307
Isaac Gouy's avatar
Isaac Gouy committed
        <td>24&nbsp;min
        <td class="message">0%&nbsp;0%&nbsp;100%&nbsp;1%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-mri-5.html"><span>Matz's&nbsp;<strong>Ruby</strong>&nbsp;#5</span></a>
        <td class="best">32&nbsp;min
        <td>53,240
        <td>970
        <td>2h&nbsp;10&nbsp;min
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-mri-2.html"><span>Matz's Ruby&nbsp;#2</span></a>
        <td>39&nbsp;min
        <td>64,428
        <td>880
        <td>2h&nbsp;37&nbsp;min
        <td class="message">100%&nbsp;100%&nbsp;100%&nbsp;100%
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-mri-6.html"><span>Matz's Ruby&nbsp;#6</span></a>
        <td>39&nbsp;min
        <td>131,576
        <td>918
        <td>2h&nbsp;32&nbsp;min
        <td class="message">96%&nbsp;96%&nbsp;95%&nbsp;95%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>&nbsp;
        <td><a href="../program/mandelbrot-mri-3.html"><span>Matz's Ruby&nbsp;#3</span></a>
        <td>2h&nbsp;03&nbsp;min
        <td>3,208
        <td>307
        <td>2h&nbsp;04&nbsp;min
        <td class="message">0%&nbsp;0%&nbsp;0%&nbsp;100%
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>
        <td><a href="../program/mandelbrot-gpp-0.html"><span>C++ g++</span></a>
        <td class="message">Bad&nbsp;Output
        <td>
        <td>
        <td>
        <td>
Isaac Gouy's avatar
Isaac Gouy committed
      <tr>
        <td>
        <td><a href="../program/mandelbrot-python3-5.html"><span>Python 3&nbsp;#5</span></a>
        <td class="message">Failed
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
        <td><a href="../program/mandelbrot-python3-2.html"><span>Python 3&nbsp;#2</span></a>
        <td class="message">Timed&nbsp;Out
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
        <td><a href="../program/mandelbrot-ruby-7.html"><span>Ruby&nbsp;#7</span></a>
        <td class="message">Failed
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
        <td><a href="../program/mandelbrot-ruby-6.html"><span>Ruby&nbsp;#6</span></a>
        <td class="message">Failed
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-mri-7.html"><span>Matz's Ruby&nbsp;#7</span></a>
        <td class="message">Failed
Isaac Gouy's avatar
Isaac Gouy committed
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
Isaac Gouy's avatar
Isaac Gouy committed
        <td><a href="../program/mandelbrot-mri-4.html"><span>Matz's Ruby&nbsp;#4</span></a>
Isaac Gouy's avatar
Isaac Gouy committed
        <td class="message">Timed&nbsp;Out
        <td>
        <td>
        <td>
        <td>
      <tr>
        <td>
        <td><a href="../program/mandelbrot-swift-3.html"><span>Swift&nbsp;#3</span></a>
        <td class="message">Bad&nbsp;Output
        <td>
        <td>
        <td>
        <td>
      </table>
      <nav>
        <ul>
          <li class="best">by secs
          <li><a href="./mandelbrot-mem.html"><span>by mem</span></a>
          <li><a href="./mandelbrot-gz.html"><span>by gz</span></a>
          <li><a href="./mandelbrot-cpu.html"><span>by busy</span></a>
        </ul>
      </nav>
  </section>
</article>
<footer>
  <nav>
    <ul>
      <li><a href="../how-programs-are-measured.html"><span>How programs are measured</span></a>
    </ul>
  </nav>
</footer>