source: CIVL/examples/pthread/Makefile@ 761eb6f

1.23 2.0 main test-branch
Last change on this file since 761eb6f was 761eb6f, checked in by John Edenhofner <johneden@…>, 12 years ago

Updated examples and Makefile

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1029 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 1.5 KB
Line 
1CIVL=civl
2VERIFY=$(CIVL) verify
3
4all: arrayloops bug1 bug1fix bug3 bug4 bug4fix bug5 bug6 bug6fix condvar detached dotprod_mutex fib_bench_false join mpithreads_threads
5
6arrayloops: arrayloops.cvl
7 $(VERIFY) -inputNTHREADS=4 -inputARRAYSIZE=1000000 arrayloops.cvl
8
9bug1: bug1.cvl
10 $(VERIFY) -inputNUM_THREADS=6 -inputTCOUNT=10 -inputCOUNT_LIMIT=12 bug1.cvl
11
12bug1fix: bug1fix.cvl
13 $(VERIFY) -inputNUM_THREADS=6 -inputTCOUNT=10 -inputCOUNT_LIMIT=12 bug1fix.cvl
14
15bug3: bug3.cvl
16 $(VERIFY) -inputNUM_THREADS=8 bug3.cvl
17
18bug4: bug4.cvl
19 $(VERIFY) -inputNUM_THREADS=3 -inputITERATIONS=10 -inputTHRESHOLD=12 bug4.cvl
20
21bug4fix: bug4fix.cvl
22 $(VERIFY) -inputNUM_THREADS=3 -inputITERATIONS=10 -inputTHRESHOLD=12 bug4fix.cvl
23
24bug5: bug5.cvl
25 $(VERIFY) -inputNUM_THREADS=5 bug5fix.cvl
26
27bug6: bug6.cvl
28 $(VERIFY) -inputNUM_THRDS=5 -inputVECLEN=1000 bug6.cvl
29
30bug6fix: bug6fix.cvl
31 $(VERIFY) -inputNUM_THRDS=5 -inputVECLEN=1000 bug6fix.cvl
32
33condvar: condvar.cvl
34 $(VERIFY) -inputNUM_THREADS=3 -inputTCOUNT=10 -inputCOUNT_LIMIT=12 condvar.cvl
35
36detached: detached.cvl
37 $(VERIFY) -inputNUM_THREADS=4 detached.cvl
38
39dotprod_mutex: dotprod_mutex.cvl
40 $(VERIFY) -inputNUMTHRDS=4 -inputVECLEN=100000 dotprod_mutex.cvl
41
42fib_bench_false: fib_bench_false.cvl
43 $(VERIFY) -inputNUM=5 fib_bench_false.cvl
44
45join: join.cvl
46 $(VERIFY) -inputNUM_THREADS=4 join.cvl
47
48mpithreads_threads: mpithreads_threads.cvl
49 $(VERIFY) -inputMAXTHRDS=8 -inputVECLEN=100 mpithreads_threads.cvl
50
51twostage_3_false: twostage_3_false.cvl
52 $(VERIFY) twostage_3_false.cvl
53
Note: See TracBrowser for help on using the repository browser.