├── .gitignore ├── CHANGELOG ├── Makefile ├── TODO ├── compare.sh ├── conf ├── conf.ERROR-no-queue ├── conf.mpistress.frontera ├── conf.osu.frontera ├── conf.paw-col ├── conf.paw.frontera ├── conf.paw.frontera-daos ├── conf.paw.frontera.all ├── conf.paw.frontera.coll ├── conf.paw.frontera.p2p ├── conf.paw.rtx.p2p ├── conf.shell-script ├── conf.shell-script-multiple ├── conf.stress.p2p ├── osu.conf ├── osu_ls6.conf └── osu_rp.conf ├── docs ├── Makefile ├── acromacs.tex ├── body.tex ├── commonmacs.tex ├── coursemacs.tex ├── listingmacs.tex ├── presentation.tex ├── snippetmacs.tex ├── tacclogonew.jpg └── tacctitle.jpg ├── jobsuite.py ├── programs └── example_script.sh ├── readme.md ├── spawn.py └── spawnrc.example /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | See the Readme file. 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/Makefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/TODO -------------------------------------------------------------------------------- /compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/compare.sh -------------------------------------------------------------------------------- /conf/conf.ERROR-no-queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.ERROR-no-queue -------------------------------------------------------------------------------- /conf/conf.mpistress.frontera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.mpistress.frontera -------------------------------------------------------------------------------- /conf/conf.osu.frontera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.osu.frontera -------------------------------------------------------------------------------- /conf/conf.paw-col: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw-col -------------------------------------------------------------------------------- /conf/conf.paw.frontera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.frontera -------------------------------------------------------------------------------- /conf/conf.paw.frontera-daos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.frontera-daos -------------------------------------------------------------------------------- /conf/conf.paw.frontera.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.frontera.all -------------------------------------------------------------------------------- /conf/conf.paw.frontera.coll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.frontera.coll -------------------------------------------------------------------------------- /conf/conf.paw.frontera.p2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.frontera.p2p -------------------------------------------------------------------------------- /conf/conf.paw.rtx.p2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.paw.rtx.p2p -------------------------------------------------------------------------------- /conf/conf.shell-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.shell-script -------------------------------------------------------------------------------- /conf/conf.shell-script-multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.shell-script-multiple -------------------------------------------------------------------------------- /conf/conf.stress.p2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/conf.stress.p2p -------------------------------------------------------------------------------- /conf/osu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/osu.conf -------------------------------------------------------------------------------- /conf/osu_ls6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/osu_ls6.conf -------------------------------------------------------------------------------- /conf/osu_rp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/conf/osu_rp.conf -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/acromacs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/acromacs.tex -------------------------------------------------------------------------------- /docs/body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/body.tex -------------------------------------------------------------------------------- /docs/commonmacs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/commonmacs.tex -------------------------------------------------------------------------------- /docs/coursemacs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/coursemacs.tex -------------------------------------------------------------------------------- /docs/listingmacs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/listingmacs.tex -------------------------------------------------------------------------------- /docs/presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/presentation.tex -------------------------------------------------------------------------------- /docs/snippetmacs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/snippetmacs.tex -------------------------------------------------------------------------------- /docs/tacclogonew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/tacclogonew.jpg -------------------------------------------------------------------------------- /docs/tacctitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/docs/tacctitle.jpg -------------------------------------------------------------------------------- /jobsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/jobsuite.py -------------------------------------------------------------------------------- /programs/example_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/programs/example_script.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/readme.md -------------------------------------------------------------------------------- /spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/spawn.py -------------------------------------------------------------------------------- /spawnrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/demonspawn/HEAD/spawnrc.example --------------------------------------------------------------------------------