Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1392)

Side by Side Diff: benchmarks/run.html

Issue 9359033: Add Navier-Stokes benchmark. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix whitespace and copyright" Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « benchmarks/navier-stokes.js ('k') | benchmarks/run.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html lang="en"> 3 <html lang="en">
4 <head> 4 <head>
5 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> 5 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
6 <meta http-equiv="Content-Script-Type" content="text/javascript"> 6 <meta http-equiv="Content-Script-Type" content="text/javascript">
7 <meta http-equiv="Content-Style-Type" content="text/css"> 7 <meta http-equiv="Content-Style-Type" content="text/css">
8 <title>V8 Benchmark Suite</title> 8 <title>V8 Benchmark Suite</title>
9 <script type="text/javascript" src="base.js"></script> 9 <script type="text/javascript" src="base.js"></script>
10 <script type="text/javascript" src="richards.js"></script> 10 <script type="text/javascript" src="richards.js"></script>
11 <script type="text/javascript" src="deltablue.js"></script> 11 <script type="text/javascript" src="deltablue.js"></script>
12 <script type="text/javascript" src="crypto.js"></script> 12 <script type="text/javascript" src="crypto.js"></script>
13 <script type="text/javascript" src="raytrace.js"></script> 13 <script type="text/javascript" src="raytrace.js"></script>
14 <script type="text/javascript" src="earley-boyer.js"></script> 14 <script type="text/javascript" src="earley-boyer.js"></script>
15 <script type="text/javascript" src="regexp.js"></script> 15 <script type="text/javascript" src="regexp.js"></script>
16 <script type="text/javascript" src="splay.js"></script> 16 <script type="text/javascript" src="splay.js"></script>
17 <script type="text/javascript" src="navier-stokes.js"></script>
17 <link type="text/css" rel="stylesheet" href="style.css" /> 18 <link type="text/css" rel="stylesheet" href="style.css" />
18 <script type="text/javascript"> 19 <script type="text/javascript">
19 var completed = 0; 20 var completed = 0;
20 var benchmarks = BenchmarkSuite.CountBenchmarks(); 21 var benchmarks = BenchmarkSuite.CountBenchmarks();
21 var success = true; 22 var success = true;
22 23
23 function ShowProgress(name) { 24 function ShowProgress(name) {
24 var status = document.getElementById("status"); 25 var status = document.getElementById("status");
25 var percentage = ((++completed) / benchmarks) * 100; 26 var percentage = ((++completed) / benchmarks) * 100;
26 status.innerHTML = "Running: " + Math.round(percentage) + "% completed."; 27 status.innerHTML = "Running: " + Math.round(percentage) + "% completed.";
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 <ul> 111 <ul>
111 <li><b>Richards</b><br>OS kernel simulation benchmark, originally written in BCP L by Martin Richards (<i>539 lines</i>).</li> 112 <li><b>Richards</b><br>OS kernel simulation benchmark, originally written in BCP L by Martin Richards (<i>539 lines</i>).</li>
112 <li><b>DeltaBlue</b><br>One-way constraint solver, originally written in Smallta lk by John Maloney and Mario Wolczko (<i>880 lines</i>).</li> 113 <li><b>DeltaBlue</b><br>One-way constraint solver, originally written in Smallta lk by John Maloney and Mario Wolczko (<i>880 lines</i>).</li>
113 <li><b>Crypto</b><br>Encryption and decryption benchmark based on code by Tom Wu (<i>1698 lines</i>).</li> 114 <li><b>Crypto</b><br>Encryption and decryption benchmark based on code by Tom Wu (<i>1698 lines</i>).</li>
114 <li><b>RayTrace</b><br>Ray tracer benchmark based on code by <a href="http://flo g.co.nz/">Adam Burmister</a> (<i>904 lines</i>).</li> 115 <li><b>RayTrace</b><br>Ray tracer benchmark based on code by <a href="http://flo g.co.nz/">Adam Burmister</a> (<i>904 lines</i>).</li>
115 <li><b>EarleyBoyer</b><br>Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (<i>4684 lines</i>).</li> 116 <li><b>EarleyBoyer</b><br>Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (<i>4684 lines</i>).</li>
116 <li><b>RegExp</b><br>Regular expression benchmark generated by extracting regula r expression operations from 50 of the most popular web pages 117 <li><b>RegExp</b><br>Regular expression benchmark generated by extracting regula r expression operations from 50 of the most popular web pages
117 (<i>1761 lines</i>). 118 (<i>1761 lines</i>).
118 </li> 119 </li>
119 <li><b>Splay</b><br>Data manipulation benchmark that deals with splay trees and exercises the automatic memory management subsystem (<i>394 lines</i>).</li> 120 <li><b>Splay</b><br>Data manipulation benchmark that deals with splay trees and exercises the automatic memory management subsystem (<i>394 lines</i>).</li>
121 <li><b>NavierStokes (beta)</b><br>Solves NavierStokes equations in 2D, heavily m anipulating double precision arrays. Based on Oliver Hunt's code (<i>396 lines</ i>).</li>
120 </ul> 122 </ul>
121 123
122 <p> 124 <p>
123 Note that benchmark results are not comparable unless both results are 125 Note that benchmark results are not comparable unless both results are
124 run with the same revision of the benchmark suite. We will be making 126 run with the same revision of the benchmark suite. We will be making
125 revisions from time to time in order to fix bugs or expand the scope 127 revisions from time to time in order to fix bugs or expand the scope
126 of the benchmark suite. For previous revisions and the change log see 128 of the benchmark suite. For previous revisions and the change log see
127 the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html ">revisions</a> page. 129 the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html ">revisions</a> page.
128 </p> 130 </p>
129 131
130 </td><td style="text-align: center"> 132 </td><td style="text-align: center">
131 <div class="run"> 133 <div class="run">
132 <div id="status">Starting...</div> 134 <div id="status">Starting...</div>
133 <div id="results"> 135 <div id="results">
134 </div> 136 </div>
135 </div> 137 </div>
136 </td></tr></table> 138 </td></tr></table>
137 139
138 </div> 140 </div>
139 141
140 </body> 142 </body>
141 </html> 143 </html>
OLDNEW
« no previous file with comments | « benchmarks/navier-stokes.js ('k') | benchmarks/run.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698