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

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

changed makefile for diffusion2d_cb.c

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1734 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_cb.c
39 $(VERIFY) -input_NPROCS=4 -inputxProcs=2 -inputyProcs=2 -inputNSTEPSB=3 diffusion2d_cb.c
40
41clean:
42 rm -f -r CIVLREP
43 rm -r -f *~
44
Note: See TracBrowser for help on using the repository browser.