source: CIVL/examples/mpi/collective/Makefile

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 1.1 KB
Line 
1CIVL = civl
2VERIFY = $(CIVL) verify
3REPLAY = $(CIVL) replay
4
5all: bcast_bad scatter_bad gather_bad scatterGather scatterGather_bad scatterAllgather vectorSum
6
7bcast_bad: bcast_bad.c
8 ${VERIFY} -input_mpi_nprocs=6 bcast_bad.c
9
10scatter_bad: scatter_bad.c
11 ${VERIFY} -input_mpi_nprocs=5 scatter_bad.c
12
13gather_bad: gather_bad.c
14 ${VERIFY} -input_mpi_nprocs=5 gather_bad.c
15
16scatterGather: scatterGather.c
17 ${VERIFY} -input_mpi_nprocs=5 scatterGather.c
18
19scatterGather_bad: scatterGather_bad.c
20 ${VERIFY} -input_mpi_nprocs=5 scatterGather_bad.c
21 ${REPLAY} scatterGather_bad.c
22
23BcastReduce: BcastReduce.c BcastReduce2.c
24 $(VERIFY) -input_mpi_nprocs_hi=8 -input_mpi_nprocs_lo=1 BcastReduce.c
25 $(VERIFY) -input_mpi_nprocs_hi=8 -input_mpi_nprocs_lo=1 BcastReduce2.c
26
27scatterAllgather: scatterAllgather.c
28 ${VERIFY} -input_mpi_nprocs=5 scatterAllgather.c
29
30scatterAllgather_bad: scatterAllgather_bad.c
31 ${VERIFY} -input_mpi_nprocs=5 scatterAllgather_bad.c
32
33vectorSum: vectorSum.c
34 ${VERIFY} -input_mpi_nprocs=5 vectorSum.c
35
36vectorSum_bad: vectorSum_bad.c
37 ${VERIFY} -input_mpi_nprocs=5 vectorSum_bad.c
38
39clean:
40 rm -f -r CIVLREP
41 rm -r -f *~
Note: See TracBrowser for help on using the repository browser.