FLAME

FLAME is installed in mesocomte and lumière cluster.

  • xparser version 0.17
  • libmboard version 0.3.1 with OpenMPI / GCC

First load FLAME by using module command line

module load flame

Model Execution

$ $FLAME_HOME/xparser/xparser model.xml -p -f

This will generate all needed files for the simulation! w00t 8-O

-p paramater for parallel mode

Simulation compilation

$ make LIBMBOARD_DIR=$FLAME_HOME

This will generate main program

Simulation execution

put all in SGE script.

#!/bin/bash -l
 
#$ -V
#$ -N test_sge
#$ -cwd
#$ -o $JOB_NAME.$JOB_ID.out
 
#$ -pe impi_tight 16
 
module load flame
 
mpirun -np $NSLOTS main args1 args2 ...

Submit

  • Cluster Mesocomte
    $ qsub script.sge
  • Cluster Lumière
    $ qsub -q mpi.q script.sge