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 | |
|---|
| 1 | CIVL = civl
|
|---|
| 2 | VERIFY = $(CIVL) verify
|
|---|
| 3 | REPLAY = $(CIVL) replay
|
|---|
| 4 |
|
|---|
| 5 | all: bcast_bad scatter_bad gather_bad scatterGather scatterGather_bad scatterAllgather vectorSum
|
|---|
| 6 |
|
|---|
| 7 | bcast_bad: bcast_bad.c
|
|---|
| 8 | ${VERIFY} -input_mpi_nprocs=6 bcast_bad.c
|
|---|
| 9 |
|
|---|
| 10 | scatter_bad: scatter_bad.c
|
|---|
| 11 | ${VERIFY} -input_mpi_nprocs=5 scatter_bad.c
|
|---|
| 12 |
|
|---|
| 13 | gather_bad: gather_bad.c
|
|---|
| 14 | ${VERIFY} -input_mpi_nprocs=5 gather_bad.c
|
|---|
| 15 |
|
|---|
| 16 | scatterGather: scatterGather.c
|
|---|
| 17 | ${VERIFY} -input_mpi_nprocs=5 scatterGather.c
|
|---|
| 18 |
|
|---|
| 19 | scatterGather_bad: scatterGather_bad.c
|
|---|
| 20 | ${VERIFY} -input_mpi_nprocs=5 scatterGather_bad.c
|
|---|
| 21 | ${REPLAY} scatterGather_bad.c
|
|---|
| 22 |
|
|---|
| 23 | BcastReduce: 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 |
|
|---|
| 27 | scatterAllgather: scatterAllgather.c
|
|---|
| 28 | ${VERIFY} -input_mpi_nprocs=5 scatterAllgather.c
|
|---|
| 29 |
|
|---|
| 30 | scatterAllgather_bad: scatterAllgather_bad.c
|
|---|
| 31 | ${VERIFY} -input_mpi_nprocs=5 scatterAllgather_bad.c
|
|---|
| 32 |
|
|---|
| 33 | vectorSum: vectorSum.c
|
|---|
| 34 | ${VERIFY} -input_mpi_nprocs=5 vectorSum.c
|
|---|
| 35 |
|
|---|
| 36 | vectorSum_bad: vectorSum_bad.c
|
|---|
| 37 | ${VERIFY} -input_mpi_nprocs=5 vectorSum_bad.c
|
|---|
| 38 |
|
|---|
| 39 | clean:
|
|---|
| 40 | rm -f -r CIVLREP
|
|---|
| 41 | rm -r -f *~
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.