source: benchmark/ctxswitch/node_cor.js@ 7030dab

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 7030dab was c12869e, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

update benchmarks for concurrency paper

  • Property mode set to 100644
File size: 516 bytes
Line 
1var times = 50000000
2var argc = process.argv.length // node, path
3if ( argc > 3 ) process.exit( 1 )
4if ( argc == 3 ) times = Number( process.argv[2] )
5
6function * coroutine() {
7 while ( true ) {
8 yield
9 }
10}
11cor = coroutine()
12
13var hrstart = process.hrtime()
14for ( var i = 0; i < times; i += 1 ) {
15 cor.next();
16}
17hrend = process.hrtime( hrstart )
18var dur = (1000000000 * hrend[0] + hrend[1]) / times
19console.log( dur )
20
21// Local Variables: //
22// tab-width: 4 //
23// compile-command: "nodejs node_cor.js" //
24// End: //
Note: See TracBrowser for help on using the repository browser.