コード例 #1
0
ファイル: simple_parallel.c プロジェクト: insieme/insieme
int main(int argc, char** argv) {

	cba_print_code();

	// for now this is simply testing the primitives
	cba_dump_thread_regions();
	cba_dump_execution_net();
	cba_dump_state_graph();

	cba_dump_equations();

	#pragma omp parallel
	{
		#pragma omp single
		{
			int x = 1;
		}
	}

	// also test some cilk stuff ..
	spawn doSomething();
	spawn doSomething();
	sync;
	
	return 0;
}
コード例 #2
0
ファイル: dijkstra.c プロジェクト: 8l/insieme
int main(int argc, char** argv) {

	cba_print_code();

	// for now this is simply testing the primitives
	cba_dump_thread_regions();
	cba_dump_execution_net();
	cba_dump_state_graph();

	f(10);

	return 0;
}