source: CIVL/examples/translation/mpi/Makefile@ 85b7e48

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 85b7e48 was 7e8e35c, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

updated Makefile's according to the new command line specification.

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

  • Property mode set to 100644
File size: 1017 bytes
Line 
1CIVL = civl
2VERIFY = $(CIVL) verify
3CC = cc
4
5all: adder_par ring1 mpithreads_mpi mpi_pi_send mpi_prime
6
7adder_par: adder_par.c
8 $(VERIFY) -input__NPROCS=2 -inputNB=4 adder_par.c
9
10ring1: ring1.c
11 $(VERIFY) -input__NPROCS=5 ring1.c
12
13mpithreads_mpi: mpithreads_mpi.c
14 $(VERIFY) -input__NPROCS=2 mpithreads_mpi.c
15
16mpi_pi_send: mpi_pi_send.c
17 $(VERIFY) -input__NPROCS=3 -enablePrintf=false mpi_pi_send.c
18
19mpi_prime: mpi_prime.c
20 $(VERIFY) -input__NPROCS=4 -enablePrintf=false mpi_prime.c
21
22mpi_gather: ${Gather_Scatter/mpi_gather.c}
23 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_gather.c
24
25mpi_scatter: ${Gather_Scatter/mpi_scatter.c}
26 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_scatter.c
27
28mpi_gatherv: ${Gather_Scatter/mpi_gatherv.c}
29 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_gatherv.c
30
31mpi_scatterv: ${Gather_Scatter/mpi_scatterv.c}
32 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_scatterv.c
33
34clean:
35 rm -f -r CIVLREP
36 rm -r -f *~
37
Note: See TracBrowser for help on using the repository browser.