source: CIVL/examples/compare/dot/Makefile@ beab7f2

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