tebdol

Simulation of ultracold atoms in optical lattices
git clone https://miroslavurbanek.com/git/tebdol.git
Log | Files | Refs | README

run (431B)


      1 #!/bin/sh
      2 
      3 LD_LIBRARY_PATH=/opt/openblas
      4 SBCL=/opt/sbcl/bin/sbcl
      5 DSS=1024 # megabytes
      6 
      7 export LD_LIBRARY_PATH
      8 
      9 if [ $# -eq 0 ]; then
     10     echo usage: $0 program.lisp [arguments]
     11     exit 1
     12 fi
     13 
     14 PROGRAM="$1"
     15 shift
     16 
     17 exec "$SBCL" --dynamic-space-size "$DSS" --noinform --disable-ldb \
     18  --lose-on-corruption --end-runtime-options --no-sysinit \
     19  --no-userinit --load "$PROGRAM" --noprint --non-interactive \
     20  --end-toplevel-options "$@"