Changeset 981f775
- Timestamp:
- 12/11/10 01:21:28 (3 years ago)
- Branches:
- master, external, fix-prolong, refactor, refactor-subsolvers
- Children:
- b77a46f
- Parents:
- 72b1866
- git-author:
- Oleg Batrashev <ogbash@…> (12/11/10 01:21:28)
- git-committer:
- Oleg Batrashev <ogbash@…> (12/11/10 01:21:28)
- Files:
-
- 12 edited
-
.gitignore (modified) (1 diff)
-
scripts/conf/hebe/tests.conf (modified) (2 diffs)
-
scripts/conf/kheiron/g95-lam.conf (modified) (1 diff)
-
scripts/conf/kheiron/ifort-lam.conf (modified) (1 diff)
-
scripts/conf/kheiron/testscript.conf (modified) (2 diffs)
-
scripts/doug/execution.conf.tmpl (modified) (1 diff)
-
scripts/testscript.py (modified) (1 diff)
-
src/main/geom.F90 (modified) (1 diff)
-
tests/tests.conf (modified) (2 diffs)
-
tests/tests_1lv.conf (modified) (2 diffs)
-
tests/tests_all.conf (modified) (4 diffs)
-
tests/tests_schwarz.conf (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r7365bb8 r981f775 22 22 /src/main/Make.deps 23 23 /src/main/doug_aggr 24 /src/main/doug_ main25 /src/main/doug_ main-main_drivers.obj24 /src/main/doug_geom 25 /src/main/doug_geom-main_drivers.obj 26 26 /src/matrix_gen 27 27 -
scripts/conf/hebe/tests.conf
r7365bb8 r981f775 28 28 # levels=1,2,3 29 29 # processors=1,4 30 # executables=doug_ main,doug_aggr30 # executables=doug_geom,doug_aggr 31 31 # smoothers = 0,1,2 32 32 [tests] … … 45 45 levels=1,2 46 46 #levels=1 47 executables=%(g-dougdir)s/doug_ main47 executables=%(g-dougdir)s/doug_geom 48 48 smoothers = 0 49 49 -
scripts/conf/kheiron/g95-lam.conf
r15d9412 r981f775 16 16 17 17 [dougtest] 18 # directory where doug_ mainand doug_aggr are located18 # directory where doug_geom and doug_aggr are located 19 19 dougbindir: %(g-builddir)s/src/main 20 20 -
scripts/conf/kheiron/ifort-lam.conf
r15d9412 r981f775 16 16 17 17 [dougtest] 18 # directory where doug_ mainand doug_aggr are located18 # directory where doug_geom and doug_aggr are located 19 19 dougbindir: %(g-builddir)s/src/main 20 20 -
scripts/conf/kheiron/testscript.conf
r15d9412 r981f775 19 19 levels=1 20 20 processors=1 21 executables=doug_ main21 executables=doug_geom 22 22 23 23 [testconf_basic] … … 26 26 levels=1 27 27 processors=1,2 28 executables=doug_ main,doug_aggr28 executables=doug_geom,doug_aggr 29 29 30 30 [testconf_coarse] -
scripts/doug/execution.conf.tmpl
r269c9be r981f775 2 2 [DEFAULT] 3 3 doug-datadir: . 4 #: directory where doug_ mainand doug_aggr are located4 #: directory where doug_geom and doug_aggr are located 5 5 doug-bindir: /usr/bin 6 6 #: directory where test is run -
scripts/testscript.py
r82ee377 r981f775 66 66 # overlaps=-1 67 67 # smoothers=0,1 68 # executables=doug_ main,doug_aggr68 # executables=doug_geom,doug_aggr 69 69 """ 70 70 -
src/main/geom.F90
r72b1866 r981f775 22 22 !> Main program for running DOUG with input files in elemental form. 23 23 !> Running the code: (example) 24 !> <tt>mpirun -np 3 doug_ main-f doug.ctl</tt>24 !> <tt>mpirun -np 3 doug_geom -f doug.ctl</tt> 25 25 !> where \c doug.ctl may contain the following fields 26 26 !! -
tests/tests.conf
raa02dfd r981f775 21 21 # levels=1,2,3 22 22 # processors=1,4 23 # executables=doug_ main,doug_aggr23 # executables=doug_geom,doug_aggr 24 24 # smoothers = 0,1,2 25 25 [tests] … … 38 38 levels=1,2 39 39 #levels=1 40 executables=doug_ main40 executables=doug_geom 41 41 smoothers = 0 42 42 overlaps = 0 -
tests/tests_1lv.conf
r82ee377 r981f775 23 23 # levels=1,2,3 24 24 # processors=1,4 25 # executables=doug_ main,doug_aggr25 # executables=doug_geom,doug_aggr 26 26 # smoothers = 0,1,2 27 27 [tests] … … 40 40 levels=1 41 41 #levels=1 42 executables=%(g-dougdir)s/doug_ main42 executables=%(g-dougdir)s/doug_geom 43 43 smoothers = 0 44 44 overlaps = -1,0,1,2 -
tests/tests_all.conf
raa02dfd r981f775 22 22 # levels=1,2,3 23 23 # processors=1,4 24 # executables=doug_ main,doug_aggr24 # executables=doug_geom,doug_aggr 25 25 # smoothers = 0,1,2 26 26 [tests] … … 39 39 levels=1 40 40 #levels=1 41 executables=doug_ main41 executables=doug_geom 42 42 smoothers = 0 43 43 overlaps = -1,0,1,2 … … 48 48 processors=1,2,4 49 49 levels=2 50 executables=doug_ main50 executables=doug_geom 51 51 smoothers = 0,1,2 52 52 overlaps = -1,0 … … 87 87 processors=1,2 88 88 levels=1,2 89 executables=doug_ main89 executables=doug_geom 90 90 smoothers = 0,1 91 91 overlaps = -1,1,2 -
tests/tests_schwarz.conf
r82ee377 r981f775 23 23 # levels=1,2,3 24 24 # processors=1,4 25 # executables=doug_ main,doug_aggr25 # executables=doug_geom,doug_aggr 26 26 # smoothers = 0,1,2 27 27 [tests] … … 40 40 levels=1 41 41 #levels=1 42 executables=%(g-dougdir)s/doug_ main42 executables=%(g-dougdir)s/doug_geom 43 43 smoothers = 0 44 44 overlaps = -1
Note: See TracChangeset
for help on using the changeset viewer.
