#!/bin/sh # # (c) 2000 Sun Microsystems, Inc. # # All commands use the sentinel #$ # # --------------------------- # User needs to customize all items # enclosed by <>. Also remember to remove the "<" # and ">" characters. # # ------------------ # #$ -N #$ -S /bin/sh #$ -o #$ -e #$ -M #$ -m es # --------------------------- # # Execute the job from the current working directory #$ -cwd # # Parallel environment request # --------------------------- # User needs to customize the following items # enclosed by <> # # CPU_Numbers_requested, use or - # # Example: 2 or 4-22 where the latter gives 4 to 22 CPU:s # depending on the amount of idle CPU:s at # execution time # #$ -pe openmp # --------------------------- # # All resources are defined here # # Choose your queue # #$ -q anytime # # Job priority # #$ -p 0 # # # --------------------------- # # Put compilations here # # --------------------------- # # Execution # # User needs to customize the following items # enclosed by <> # # OMP_NUM_THREADS=$NSLOTS export OMP_NUM_THREADS # ---------------------------