source: CIVL/examples/compare/dot/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.5 KB
RevLine 
[2ceb09a]1CIVL = civl
2VERIFY = $(CIVL) verify
3COMPARE = $(CIVL) compare
4REPLAY = $(CIVL) replay
5
[25a9d50]6all: mpiSerDot pthreadSerDot mpiThreadsDot hybridSerDot mpiHybridDot pthreadsHybridDot
[2ceb09a]7
8mpiDot: mpithreads_mpi.c
[024a9eb]9 ${VERIFY} -inputVECLEN=5 -input_mpi_nprocs=2 mpithreads_mpi.c
[2ceb09a]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
[024a9eb]18 ${VERIFY} -inputVECLEN=5 -inputMAXTHRDS=2 -input_mpi_nprocs=2 mpithreads_both.c
[2ceb09a]19
20mpiSerDot: mpithreads_mpi.c mpithreads_serial.c
[024a9eb]21 ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -input_mpi_nprocs=2 mpithreads_mpi.c
[2ceb09a]22
23pthreadSerDot: mpithreads_threads.c mpithreads_serial.c
24 ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -inputMAXTHRDS=2 mpithreads_threads.c
25
[25a9d50]26mpiThreadsDot: mpithreads_mpi.c mpithreads_threads.c
[024a9eb]27 ${COMPARE} -inputVECLEN=5 -spec -inputMAXTHRDS=2 mpithreads_threads.c -impl -input_mpi_nprocs=2 mpithreads_mpi.c
[25a9d50]28
[cda1859]29hybridSerDot: mpithreads_serial.c mpithreads_both.c
[024a9eb]30 ${COMPARE} -inputVECLEN=5 -spec mpithreads_serial.c -impl -input_mpi_nprocs=2 -inputMAXTHRDS=2 mpithreads_both.c
[cda1859]31
[2ceb09a]32mpiHybridDot: mpithreads_mpi.c mpithreads_both.c
[024a9eb]33 ${COMPARE} -inputVECLEN=5 -input_mpi_nprocs=2 -spec mpithreads_mpi.c -impl -inputMAXTHRDS=2 mpithreads_both.c
[2ceb09a]34
[cda1859]35pthreadsHybridDot: mpithreads_threads.c mpithreads_both.c
[024a9eb]36 ${COMPARE} -inputVECLEN=5 -inputMAXTHRDS=2 -spec mpithreads_threads.c -impl -input_mpi_nprocs=2 mpithreads_both.c
[2ceb09a]37
38
39clean:
40 rm -f -r CIVLREP
41 rm -r -f *~
Note: See TracBrowser for help on using the repository browser.