Reviewers: rossberg,

Message:
PTAL.

Description:
More fixes for V8 benchmark version 7.

[email protected]

Please review this at https://chromiumcodereview.appspot.com/9701067/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M benchmarks/README.txt
  M benchmarks/revisions.html
  M benchmarks/run.html


Index: benchmarks/README.txt
diff --git a/benchmarks/README.txt b/benchmarks/README.txt
index 6676f37556e425a020ab3337f531b8f531b77d21..59f76ffc81d2b4d2c3b7f5e4b7ac86aa6891e2f3 100644
--- a/benchmarks/README.txt
+++ b/benchmarks/README.txt
@@ -77,3 +77,10 @@ input strings.
 Furthermore, the benchmark runner was changed to run the benchmarks
 for at least a few times to stabilize the reported numbers on slower
 machines.
+
+
+Changes from Version 6 to Version 7
+===================================
+
+Added the Navier-Stokes benchmark, a 2D differential equation solver
+that stresses arithmetic computations on double arrays.
Index: benchmarks/revisions.html
diff --git a/benchmarks/revisions.html b/benchmarks/revisions.html
index 6ff75be1e13dd55fb519007414e3216fd1718e8a..3ce9889592f1cc566d292fc624d2e31557a596c6 100644
--- a/benchmarks/revisions.html
+++ b/benchmarks/revisions.html
@@ -19,6 +19,10 @@ not comparable unless both results are run with the same revision of
 the benchmark suite.

 </p>
+<div class="subtitle"><h3>Version 7 (<a href="http://v8.googlecode.com/svn/data/benchmarks/v7/run.html";>link</a>)</h3></div>
+
+<p>This version includes the new Navier-Stokes benchmark, a 2D differential
+ equation solver that stresses arithmetic computations on double arrays.</p>

<div class="subtitle"><h3>Version 6 (<a href="http://v8.googlecode.com/svn/data/benchmarks/v6/run.html";>link</a>)</h3></div>

Index: benchmarks/run.html
diff --git a/benchmarks/run.html b/benchmarks/run.html
index 8786d1fb0ccf05849240c4fac1348a9ba1642550..f1d14c1887b24491235474d2437353b3ddf3ff63 100644
--- a/benchmarks/run.html
+++ b/benchmarks/run.html
@@ -53,16 +53,16 @@ function Run() {
   BenchmarkSuite.RunSuites({ NotifyStep: ShowProgress,
                              NotifyError: AddError,
                              NotifyResult: AddResult,
-                             NotifyScore: AddScore });
+                             NotifyScore: AddScore });
 }

 function ShowWarningIfObsolete() {
-  // If anything goes wrong we will just catch the exception and no
+  // If anything goes wrong we will just catch the exception and no
   // warning is shown, i.e., no harm is done.
   try {
     var xmlhttp;
-    var next_version = parseInt(BenchmarkSuite.version) + 1;
-    var next_version_url = "../v" + next_version + "/run.html";
+    var next_version = parseInt(BenchmarkSuite.version) + 1;
+    var next_version_url = "../v" + next_version + "/run.html";
     if (window.XMLHttpRequest) {
       xmlhttp = new window.XMLHttpRequest();
     } else if (window.ActiveXObject) {
@@ -76,7 +76,7 @@ function ShowWarningIfObsolete() {
     };
     xmlhttp.send(null);
   } catch(e) {
-    // Ignore exception if check for next version fails.
+    // Ignore exception if check for next version fails.
     // Hence no warning is displayed.
   }
 }
@@ -84,7 +84,7 @@ function ShowWarningIfObsolete() {
 function Load() {
   var version = BenchmarkSuite.version;
   document.getElementById("version").innerHTML = version;
-  ShowWarningIfObsolete();
+  ShowWarningIfObsolete();
   setTimeout(Run, 200);
 }
 </script>
@@ -92,11 +92,11 @@ function Load() {
 <body onload="Load()">
 <div>
<div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span></h1></div>
-  <div class="warning" id="obsolete">
+  <div class="warning" id="obsolete">
 Warning! This is not the latest version of the V8 benchmark
-suite. Consider running the
+suite. Consider running the
 <a href="http://v8.googlecode.com/svn/data/benchmarks/current/run.html";>
-latest version</a>.
+latest version</a>.
   </div>
   <table>
     <tr>
@@ -118,7 +118,7 @@ higher scores means better performance: <em>Bigger is better!</em>
 (<i>1761 lines</i>).
 </li>
<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> -<li><b>NavierStokes (beta)</b><br>Solves NavierStokes equations in 2D, heavily manipulating double precision arrays. Based on Oliver Hunt's code (<i>396 lines</i>).</li> +<li><b>NavierStokes</b><br>Solves NavierStokes equations in 2D, heavily manipulating double precision arrays. Based on Oliver Hunt's code (<i>387 lines</i>).</li>
 </ul>

 <p>


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to