From: Chris Koeritz Date: Fri, 26 Apr 2013 23:25:01 +0000 (-0400) Subject: new example for pbs. X-Git-Tag: 2.140.90~997 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=9ddf3aab745400524f7f3fc5838d1e9de66871f8;p=feisty_meow.git new example for pbs. --- diff --git a/database/configuration/pbs/quicktest.pbs b/database/configuration/pbs/quicktest.pbs new file mode 100755 index 00000000..e0117543 --- /dev/null +++ b/database/configuration/pbs/quicktest.pbs @@ -0,0 +1,13 @@ +#!/bin/bash +#PBS -l nodes=1,mem=20m +#PBS -M my-email@whereiwork.com + +##PBS -l ncpus=2 +##PBS -l nodes=4 +##PBS -l select=4:ncpus=1 + +echo here is the nodefile: +cat $PBS_NODEFILE + +echo here is pbs envir variable: +echo $PBS_ENVIRONMENT diff --git a/database/configuration/pbs/readme.txt b/database/configuration/pbs/readme.txt new file mode 100644 index 00000000..c3901d95 --- /dev/null +++ b/database/configuration/pbs/readme.txt @@ -0,0 +1,6 @@ + +this directory is related to PBS: portable batch system + +there is one example so far, a completely skeletal script that just +prints out some facts about how it was run by pbs. +