source: benchmark/creation/upp_thrd.cc @ 6e540ea

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 6e540ea was b4107c8, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

update existing benchmarks for changes to bench.h, add new benchmarks in new programming languages

  • Property mode set to 100644
File size: 291 bytes
RevLine 
[034165a]1#include <cstdio>
2
3#include "bench.h"
4
5_Task MyThread {
6        void main() {}
7};
8
[b4107c8]9int main( int argc, char * argv[] ) {
10        BENCH_START()
[034165a]11        BENCH(
[b4107c8]12                for (size_t i = 0; i < times; i++) {
[034165a]13                        MyThread m;
14                },
15                result
16        )
[b4107c8]17        printf( "%g\n", result );
[dc33b5b]18}
[b4107c8]19
20// Local Variables: //
21// tab-width: 4 //
22// End: //
Note: See TracBrowser for help on using the repository browser.