source: CIVL/examples/translation/mpi/Makefile@ 6280cc6

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

changed diffusion2d.c and Makefile

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

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[8edc919]1
[190e799]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
[7e8e35c]9 $(VERIFY) -input__NPROCS=2 -inputNB=4 adder_par.c
[190e799]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
[0a7e736]23mpi_gather: ${Gather_Scatter/mpi_gather.c}
24 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_gather.c
[e9c1691]25
[0a7e736]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
[e9c1691]34
[b88607e]35mpi_wave1d: wave1d.c
36 $(VERIFY) wave1d.c
37
[6280cc6]38mpi_diff2d: diffusion2d.c
39 $(VERIFY) -inputNPROCSX=2 -inputNPROCSY=2 -inputNSTEPSB=3 diffusion2d.c
[8edc919]40
[190e799]41clean:
42 rm -f -r CIVLREP
43 rm -r -f *~
44
Note: See TracBrowser for help on using the repository browser.