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

Side by Side Diff: chrome/test/data/dromaeo/tests/sunspider-access-binary-trees.html

Issue 269054: Importing dromaeo performance tests to src/chrome/test/data.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../htmlrunner.js"></script>
4 <script>
5 /* The Great Computer Language Shootout
6 http://shootout.alioth.debian.org/
7 contributed by Isaac Gouy */
8
9 function TreeNode(left,right,item){
10 this.left = left;
11 this.right = right;
12 this.item = item;
13 }
14
15 TreeNode.prototype.itemCheck = function(){
16 if (this.left==null) return this.item;
17 else return this.item + this.left.itemCheck() - this.right.itemCheck();
18 }
19
20 function bottomUpTree(item,depth){
21 if (depth>0){
22 return new TreeNode(
23 bottomUpTree(2*item-1, depth-1)
24 ,bottomUpTree(2*item, depth-1)
25 ,item
26 );
27 }
28 else {
29 return new TreeNode(null,null,item);
30 }
31 }
32
33 window.onload = function(){ startTest("sunspider-access-binary-trees", '');
34
35 var ret;
36
37 test( "Binary Trees", function(){
38 for ( var n = 4; n <= 5; n += 1 ) {
39 var minDepth = 4;
40 var maxDepth = Math.max(minDepth + 2, n);
41 var stretchDepth = maxDepth + 1;
42
43 var check = bottomUpTree(0,stretchDepth).itemCheck();
44
45 var longLivedTree = bottomUpTree(0,maxDepth);
46 for (var depth=minDepth; depth<=maxDepth; depth+=2){
47 var iterations = 1 << (maxDepth - depth + minDepth);
48
49 check = 0;
50 for (var i=1; i<=iterations; i++){
51 check += bottomUpTree(i,depth).itemCheck();
52 check += bottomUpTree(-i,depth).itemCheck();
53 }
54 }
55
56 ret = longLivedTree.itemCheck();
57 }
58 });
59
60 endTest(); };
61 </script>
62 </head>
63 <body></body>
64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698