Changeset c12869e for benchmark/creation


Ignore:
Timestamp:
Jan 20, 2020, 12:46:37 PM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
26fd986, 5ee7d36
Parents:
f090750
Message:

update benchmarks for concurrency paper

Location:
benchmark/creation
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • benchmark/creation/node_cor.js

    rf090750 rc12869e  
    44if ( argc == 3 ) times = Number( process.argv[2] )
    55
    6 function * coroutine() {}
     6function * coroutine() { yield }
    77var hrstart = process.hrtime()
    88for ( var i = 0; i < times; i += 1 ) {
     
    1515// Local Variables: //
    1616// tab-width: 4 //
    17 // compile-command: "node node_cor.js" //
     17// compile-command: "nodejs node_cor.js" //
    1818// End: //
  • benchmark/creation/upp_cor.cc

    rf090750 rc12869e  
    55_Coroutine MyCor {
    66        void main() {}
     7  public:
     8        MyCor() { resume(); }
    79};
    810
Note: See TracChangeset for help on using the changeset viewer.