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

Side by Side Diff: benchmarks/run.html

Issue 6071: Removed the use of Math.random() and new Date() for building... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 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/crypto.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>V8 Benchmark Suite</title> 3 <title>V8 Benchmark Suite</title>
4 <script type="text/javascript" src="base.js"></script> 4 <script type="text/javascript" src="base.js"></script>
5 <script type="text/javascript" src="richards.js"></script> 5 <script type="text/javascript" src="richards.js"></script>
6 <script type="text/javascript" src="deltablue.js"></script> 6 <script type="text/javascript" src="deltablue.js"></script>
7 <script type="text/javascript" src="crypto.js"></script> 7 <script type="text/javascript" src="crypto.js"></script>
8 <script type="text/javascript" src="raytrace.js"></script> 8 <script type="text/javascript" src="raytrace.js"></script>
9 <script type="text/javascript" src="earley-boyer.js"></script> 9 <script type="text/javascript" src="earley-boyer.js"></script>
10 <style> 10 <style>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 results are run with the same revision of the benchmark suite. We will be 123 results are run with the same revision of the benchmark suite. We will be
124 making revisions from time to time in order to fix bugs or expand the scope 124 making revisions from time to time in order to fix bugs or expand the scope
125 of the benchmark suite.</i></p> 125 of the benchmark suite.</i></p>
126 126
127 <div class="title"><h3>Version 1</h3></div> 127 <div class="title"><h3>Version 1</h3></div>
128 128
129 <p>Initial release.</p> 129 <p>Initial release.</p>
130 130
131 <div class="title"><h3>Version 2</h3></div> 131 <div class="title"><h3>Version 2</h3></div>
132 132
133 <p>For version 2 the crypto benchmark was fixed. Previously, the decryption 133 <p>For version 2 the crypto benchmark was fixed. Previously, the
134 stage was given plaintext as input, which resulted in an error. Now, the 134 decryption stage was given plaintext as input, which resulted in an
135 decryption stage is given the output of the encryption stage as input. The 135 error. Now, the decryption stage is given the output of the
136 result is checked against the original plaintext. For this to give the correct 136 encryption stage as input. The result is checked against the original
137 results the crypto objects are reset for each iteration of the benchmark. In 137 plaintext. For this to give the correct results the crypto objects
138 addition, the size of the plain text has been increased a little.</p> 138 are reset for each iteration of the benchmark. In addition, the size
139 of the plain text has been increased a little and the use of
140 Math.random() and new Date() to build an RNG pool has been
141 removed. </p>
139 142
140 <p>Other benchmarks were fixed to do elementary verification of the results of 143 <p>Other benchmarks were fixed to do elementary verification of the
141 their calculations. This is to avoid accidentally obtaining scores that are 144 results of their calculations. This is to avoid accidentally
142 the result of an incorrect JavaScript engine optimization.</p> 145 obtaining scores that are the result of an incorrect JavaScript engine
146 optimization.</p>
147
143 148
144 </td><td style="text-align: center"> 149 </td><td style="text-align: center">
145 <div class="run"> 150 <div class="run">
146 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%; font-weight: bold;">Starting...</div> 151 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%; font-weight: bold;">Starting...</div>
147 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> 152 <div style="text-align: left; margin: 30px 0 0 90px;" id="results">
148 <div> 153 <div>
149 </div> 154 </div>
150 </td></tr></table> 155 </td></tr></table>
151 156
152 </div> 157 </div>
153 158
154 </body> 159 </body>
155 </html> 160 </html>
OLDNEW
« no previous file with comments | « benchmarks/crypto.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698