source: CIVL/examples/translation/mpi/Makefile@ 4de7516

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 4de7516 was a96092d, checked in by Ziqing Luo <ziqing@…>, 12 years ago

add new mpi example: mpi_pi and 2 test cases for MPI_Sys_status
some cvl programs have to be changed for new scheme of MPI_Sys_status

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

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