source: benchmark/ctxswitch/cfa_cor.cfa @ ff2a33e

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

update benchmarks and add benchmarks for qthreads

  • Property mode set to 100644
File size: 386 bytes
RevLine 
[73abe95]1#include <kernel.hfa>
2#include <thread.hfa>
[de90452]3
[8cb6fcd]4#include "bench.h"
[de90452]5
[b510ac2]6coroutine GreatSuspender {};
[de90452]7
[f1dd17a]8void ?{}( GreatSuspender & this ) {
[de90452]9        prime(this);
10}
11
[ffe2fad]12void main( __attribute__((unused)) GreatSuspender & this ) {
[de90452]13        while( true ) {
14                suspend();
15        }
16}
17
[034165a]18int main(int argc, char* argv[]) {
[de90452]19        GreatSuspender s;
20
[034165a]21        BENCH(
[dc33b5b]22                for ( i; n ) {
[b7170a64]23                        resume( s );
24                },
[034165a]25                result
26        )
[de90452]27
[dc33b5b]28        printf("%g\n", result);
29}
Note: See TracBrowser for help on using the repository browser.