Changeset c12869e for benchmark/creation
- Timestamp:
- Jan 20, 2020, 12:46:37 PM (5 years ago)
- 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
- Location:
- benchmark/creation
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/creation/node_cor.js
rf090750 rc12869e 4 4 if ( argc == 3 ) times = Number( process.argv[2] ) 5 5 6 function * coroutine() { }6 function * coroutine() { yield } 7 7 var hrstart = process.hrtime() 8 8 for ( var i = 0; i < times; i += 1 ) { … … 15 15 // Local Variables: // 16 16 // tab-width: 4 // 17 // compile-command: "node node_cor.js" //17 // compile-command: "nodejs node_cor.js" // 18 18 // End: // -
benchmark/creation/upp_cor.cc
rf090750 rc12869e 5 5 _Coroutine MyCor { 6 6 void main() {} 7 public: 8 MyCor() { resume(); } 7 9 }; 8 10
Note: See TracChangeset
for help on using the changeset viewer.