Installing Jadim is quite basic. First you have to download the source code, as well as the basic usage files and the mesh generator. They are in ForTran 77, compilable on any machine having a fortran compiler. To compile Jadim, edit the Makefile, choose the right options for the compiler, and then "make" it. The only choice that has to be made is which option are to be chosen for the compiler.General installation :
The lines to add at the beginning of the Makefile are :Installing Jadim on a single processor computer (Sun Ultra Spark 1; SGI Origin 2000 with one processor used)
Sun :
FORT = f77
FLAG_OPT = -dbl -fast
SGI :
FORT = f77
FLAG_OPT = -n32 -r8 -Ofast =IP27 -static -r12000
-r8 ;-dbl : use long reals.
-r12000 : specifies the processor used
-static : allocates all the memory from the beginning,
to avoid memory problems.
extract of man page :
-fast; -Ofast =IP27
Optimize for speed of execution
using a selection of options.
Select the combination of
options that optimizes for speed of execution without excessive compilation
time. This option provides close to the maximum performance for many realistic
applications.
The lines to add at the beginning of the Makefile are :Installing Jadim on a multi-processor computer (SGI Origin 2000, 2 or more processors)
FORT = f77
FLAG_OPT = -n32 -r8 -Ofast=IP27 -static -mips4
-IPA (-apo)
-apo : automatic parallelisation, used here until
the source code of Jadim is optimized for parallel computing.
-mips4 : allows message passing
-IPA : allows parallelizing of subroutines.
|
|