ios5-test (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
loop
var sum = 0;
for(var i=0; i<10000000; ++i) {
    sum += i;
}
ready
o2 loop
var sum = 0;
for(var i=0; i<100000; ++i) {
    for(var j=0; j<100000; ++j) {
        sum += i * j;
    }
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.