source: CIVL/examples/mpi/collective/Makefile@ 9d332ca

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 9d332ca was 5b67e5b, checked in by Manchun Zheng <zmanchun@…>, 11 years ago

added more tests for mpi collective operations

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

  • Property mode set to 100644
File size: 760 bytes
Line 
1CIVL = civl
2VERIFY = $(CIVL) verify
3REPLAY = $(CIVL) replay
4
5all: bcast_bad scatter_bad gather_bad scatterGather scatterGather_bad scatterAllgather
6
7bcast_bad: bcast_bad.c
8 ${VERIFY} -input_NPROCS=5 bcast_bad.c
9
10scatter_bad: scatter_bad.c
11 ${VERIFY} -input_NPROCS=5 scatter_bad.c
12
13gather_bad: gather_bad.c
14 ${VERIFY} -input_NPROCS=5 gather_bad.c
15
16scatterGather: scatterGather.c
17 ${VERIFY} -input_NPROCS=5 scatterGather.c
18
19scatterGather_bad: scatterGather_bad.c
20 ${VERIFY} -input_NPROCS=5 scatterGather_bad.c
21 ${REPLAY} scatterGather_bad.c
22
23scatterAllgather: scatterAllgather.c
24 ${VERIFY} -input_NPROCS=5 scatterAllgather.c
25
26scatterAllgather_bad: scatterAllgather_bad.c
27 ${VERIFY} -input_NPROCS=5 scatterAllgather_bad.c
28
29clean:
30 rm -f -r CIVLREP
31 rm -r -f *~
Note: See TracBrowser for help on using the repository browser.