Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

Sbatch submission

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by kellermeier_m

    Submit a job for meep on Merlin5. Important options are --ntasks-per-node=16 or --cores-per-socket=8 since otherwise the old compute nodes may be used. They have different a CPU architecture such that some optimizations from compiling are not available.

    min-test-submit.sbatch 353 B
    #!/bin/bash -l
    #SBATCH --job-name=MEEP_test_holey_wvg
    #SBATCH --time=24:00:00
    #SBATCH --nodes=4
    #SBATCH --partition=merlin
    #SBATCH --ntasks=16
    #SBATCH --ntasks-per-node=16
    #SBATCH --workdir=/gpfs/data/kellermeier_m
    
    
    CMD=$HOME/install/bin/meep-mpi
    ARGS=' /gpfs/home/kellermeier_m/simulations/holey-wvg-meep.ctl'
    
    MPICMD="mpirun $CMD $ARGS"
    echo
    $MPICMD
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment