source: CIVL/examples/pthread/Makefile@ f6ce0eb

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

Final Submission

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

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