Commit | Line | Data |
---|---|---|
54425b14 | 1 | <!DOCTYPE html> |
bb5899c5 DV |
2 | <html> |
3 | <head> | |
6f091595 | 4 | <title>perf</title> |
7e5ddc94 DV |
5 | <!-- |
6 | For production (minified) code, use: | |
7 | <script type="text/javascript" src="dygraph-combined.js"></script> | |
8 | --> | |
9 | <script type="text/javascript" src="../dygraph-dev.js"></script> | |
10 | ||
bb5899c5 DV |
11 | <script type="text/javascript" src="data.js"></script> |
12 | </head> | |
13 | <body> | |
d16579a0 | 14 | <div id="div_g" style="width:600px; height:300px;"></div> |
bb5899c5 DV |
15 | <div id="status"></div> |
16 | ||
17 | <script type="text/javascript"> | |
4cfcc38c | 18 | var num_tests = 250; |
4b38df10 | 19 | var times = []; |
bb5899c5 DV |
20 | var start = new Date; |
21 | ||
22 | for (var i = 0; i < num_tests; i++) { | |
4b38df10 | 23 | var this_start = new Date; |
4cfcc38c DV |
24 | // Calling destroy() here reduces the memory usage in Chrome by |
25 | // ~1.2MB/instantiation. | |
26 | if (i) g.destroy(); | |
bb5899c5 | 27 | g = new Dygraph( |
d16579a0 | 28 | document.getElementById("div_g"), |
bb5899c5 DV |
29 | NoisyData, { |
30 | rollPeriod: 7, | |
31 | errorBars: true | |
32 | } | |
33 | ); | |
4b38df10 DV |
34 | var this_end = new Date; |
35 | times.push([i, this_end - this_start]); | |
bb5899c5 DV |
36 | } |
37 | ||
38 | var end = new Date; | |
39 | ||
40 | document.getElementById("status").innerHTML = "Elapsed time: " + (end - start)/num_tests + " ms/instantiation"; | |
4cfcc38c | 41 | perf = new Dygraph( |
d16579a0 | 42 | document.getElementById("div_g"), |
4b38df10 DV |
43 | times, { |
44 | labels: [ "Iteration", "Time (ms)" ] | |
45 | } | |
46 | ); | |
bb5899c5 | 47 | </script> |
1ac31d4e | 48 | |
ab68ea2d | 49 | <p><b>Some numbers on a MacBook Pro 2.53 GHz Core 2 Duo</b><br/> |
1920a008 RK |
50 | <table border="1"><tbody> |
51 | <tr><td>commit</td><td>Firefox 3.0.15</td><td>Safari 4.0.3</td></tr> | |
52 | <tr><td>bb5899c56e33716db724cb60a5120b91f5fccdeb</td> | |
53 | <td>28 ms/instantiation</td> | |
54 | <td>15.02 ms/instantiation</td></tr> | |
55 | <tr><td>2847c1cf1a2874e9fe56b5749e6e105e37bb086a</td> | |
56 | <td>49.27 ms/instantiation</td> | |
57 | <td>24.48 ms/instantiation</td></tr> | |
58 | </tbody></table> | |
1ac31d4e | 59 | </p> |
bb5899c5 DV |
60 | </body> |
61 | </html> |