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.5 KB
|
| Line | |
|---|
| 1 | CIVL = civl
|
|---|
| 2 | VERIFY = $(CIVL) verify
|
|---|
| 3 | COMPARE = $(CIVL) compare
|
|---|
| 4 | REPLAY = $(CIVL) replay
|
|---|
| 5 |
|
|---|
| 6 | all: mpiSerDot pthreadSerDot mpiThreadsDot hybridSerDot mpiHybridDot pthreadsHybridDot
|
|---|
| 7 |
|
|---|
| 8 | mpiDot: mpithreads_mpi.c
|
|---|
| 9 | ${VERIFY} -inputVECLEN=5 -input_mpi_nprocs=2 mpithreads_mpi.c
|
|---|
| 10 |
|
|---|
| 11 | serDot: mpithreads_serial.c
|
|---|
| 12 | ${VERIFY} -inputVECLEN=5 mpithreads_serial.c
|
|---|
| 13 |
|
|---|
| 14 | pthreadDot: mpithreads_threads.c
|
|---|
| 15 | ${VERIFY} -inputVECLEN=5 -inputMAXTHRDS=2 mpithreads_threads.c
|
|---|
| 16 |
|
|---|
| 17 | hybridDot: mpithreads_both.c
|
|---|
| 18 | ${VERIFY} -inputVECLEN=5 -inputMAXTHRDS=2 -input_mpi_nprocs=2 mpithreads_both.c
|
|---|
| 19 |
|
|---|
| 20 | mpiSerDot: mpithreads_mpi.c mpithreads_serial.c
|
|---|
| 21 | ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -input_mpi_nprocs=2 mpithreads_mpi.c
|
|---|
| 22 |
|
|---|
| 23 | pthreadSerDot: mpithreads_threads.c mpithreads_serial.c
|
|---|
| 24 | ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -inputMAXTHRDS=2 mpithreads_threads.c
|
|---|
| 25 |
|
|---|
| 26 | mpiThreadsDot: mpithreads_mpi.c mpithreads_threads.c
|
|---|
| 27 | ${COMPARE} -inputVECLEN=5 -spec -inputMAXTHRDS=2 mpithreads_threads.c -impl -input_mpi_nprocs=2 mpithreads_mpi.c
|
|---|
| 28 |
|
|---|
| 29 | hybridSerDot: mpithreads_serial.c mpithreads_both.c
|
|---|
| 30 | ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -input_mpi_nprocs=2 -inputMAXTHRDS=2 mpithreads_both.c
|
|---|
| 31 |
|
|---|
| 32 | mpiHybridDot: mpithreads_mpi.c mpithreads_both.c
|
|---|
| 33 | ${COMPARE} -inputVECLEN=5 -input_mpi_nprocs=2 -spec mpithreads_mpi.c -impl -inputMAXTHRDS=2 mpithreads_both.c
|
|---|
| 34 |
|
|---|
| 35 | pthreadsHybridDot: mpithreads_threads.c mpithreads_both.c
|
|---|
| 36 | ${COMPARE} -inputVECLEN=5 -inputMAXTHRDS=2 -spec mpithreads_threads.c -impl -input_mpi_nprocs=2 mpithreads_both.c
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 | clean:
|
|---|
| 40 | rm -f -r CIVLREP
|
|---|
| 41 | rm -r -f *~
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.