File: examples.cpp

package info (click to toggle)
relacy 0.0%2Bgit20191025.acc09bb-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,472 kB
  • sloc: cpp: 17,955; makefile: 68; ansic: 16; sh: 15
file content (17 lines) | stat: -rw-r--r-- 368 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "stdafx.h"
#include "spsc_overwrite_queue.hpp"
#include "amp_condvar.hpp"


int main()
{
    rl::test_params p;
    p.iteration_count = 10000;
    //p.search_type = rl::sched_bound;
    //p.context_bound = 3;

    rl::execute<spsc_overwrite_queue_test, 2>(p);
    rl::simulate<amp_condvar_test>(p);
    rl::simulate<amp_condvar_test2>(p);
}