acw/focus-triggers
|
Last change
on this file was ef04a5c, checked in by Stephen Siegel <siegel@…>, 3 days ago |
|
Added some more complex and collective tests.
Some minor code cleanup as well.
|
-
Property mode
set to
100644
|
|
File size:
865 bytes
|
| Line | |
|---|
| 1 |
|
|---|
| 2 | all: verify run
|
|---|
| 3 |
|
|---|
| 4 | verify: complex_basics complex1 complex_funs \
|
|---|
| 5 | mpi_complex fourth complex_ops
|
|---|
| 6 |
|
|---|
| 7 | run: run_complex_basics run_complex_funs
|
|---|
| 8 |
|
|---|
| 9 | complex_basics: complex_basics.c
|
|---|
| 10 | civl verify $<
|
|---|
| 11 |
|
|---|
| 12 | run_complex_basics: complex_basics.c
|
|---|
| 13 | cc -Wall -o complex_basics.exec $<
|
|---|
| 14 | ./complex_basics.exec
|
|---|
| 15 |
|
|---|
| 16 | complex1: complex1.cvl
|
|---|
| 17 | civl verify $<
|
|---|
| 18 |
|
|---|
| 19 | complex_funs: complex_funs.c
|
|---|
| 20 | civl verify $<
|
|---|
| 21 |
|
|---|
| 22 | run_complex_funs: complex_funs.c
|
|---|
| 23 | cc -Wall -o complex_funs.exec $<
|
|---|
| 24 | ./complex_funs.exec
|
|---|
| 25 |
|
|---|
| 26 | mpi_complex: mpi_complex.cvl
|
|---|
| 27 | civl verify -input_mpi_nprocs=2 $<
|
|---|
| 28 |
|
|---|
| 29 | fourth: fourth.c
|
|---|
| 30 | civl verify -input_mpi_nprocs=4 $<
|
|---|
| 31 |
|
|---|
| 32 | complex_ops: complex_ops.c
|
|---|
| 33 | civl verify $<
|
|---|
| 34 |
|
|---|
| 35 | unity: unity.cvl
|
|---|
| 36 | civl verify -inputN=4 $<
|
|---|
| 37 |
|
|---|
| 38 | clean:
|
|---|
| 39 | rm -rf *.exec *~ CIVLREP a.out
|
|---|
| 40 |
|
|---|
| 41 | _PHONY: complex_basics run_complex_basics \
|
|---|
| 42 | complex1 \
|
|---|
| 43 | complex_funs run_complex_funs \
|
|---|
| 44 | mpi_complex fourth complex_ops \
|
|---|
| 45 | all verify run clean
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.