├── LICENSE ├── Makefile ├── PBS_README.md ├── README ├── README.md ├── docs ├── PyLauncher.pdf ├── graphics │ ├── launcher-structure.cdd │ └── launcher-structure.jpeg ├── html │ ├── .buildinfo │ ├── _modules │ │ ├── index.html │ │ └── pylauncher3.html │ ├── _sources │ │ ├── extend.rst.txt │ │ ├── implementation.rst.txt │ │ ├── index.rst.txt │ │ ├── introduction.rst.txt │ │ ├── testing.rst.txt │ │ ├── trace.rst.txt │ │ └── tutorial.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── classic.css │ │ ├── default.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ ├── extend.html │ ├── genindex.html │ ├── implementation.html │ ├── index.html │ ├── introduction.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ ├── searchindex.js │ ├── testing.html │ ├── trace.html │ └── tutorial.html ├── launcher.pptx ├── man │ └── pylauncher.1 └── rst │ ├── Makefile │ ├── conf.py │ ├── extend.rst │ ├── extend.rst.orig │ ├── implementation.rst │ ├── index.rst │ ├── introduction.rst │ ├── testing.rst │ ├── trace.rst │ └── tutorial.rst ├── examples ├── Makefile ├── dbexample │ ├── Makefile │ ├── README │ ├── db_command_lines │ ├── dbcommandlines.py │ ├── dblauncher.py │ ├── dot-dbrc-example │ ├── jobscript │ └── todb.py ├── examples_in_progress │ ├── example_paramiko_test.py │ ├── example_sleep.py │ ├── example_sleep_lots.py │ └── test_paramiko.py ├── jobscript.big ├── jobscript.host ├── jobscript.unittest ├── jobscript_template.ls5 ├── jobscript_template.stampede2 ├── local_paths.sh ├── parallellinescores ├── resume │ ├── example_classic_launcher.py │ ├── example_resume_launcher.py │ ├── jobscr_resume │ └── jobscr_start └── sockets │ ├── Makefile │ ├── README │ ├── driver.py │ └── server.py ├── hostlist.py ├── hostlist114.py ├── pyproject.toml ├── scripts └── cluster.py ├── setup.cfg ├── src ├── hostlist3.py └── pylauncher │ ├── __init__.py │ ├── launcher_tests.py │ ├── pylauncher2.py │ └── pylauncher_core.py ├── tests ├── Make.programs ├── Makefile ├── barriercommandlines ├── bigcorecommandlines ├── commalines ├── commandlines ├── corecommandlines ├── corecount.c ├── example_barrier_launcher.py ├── example_bigcore_launcher.py ├── example_classic_launcher.py ├── example_comma_launcher.py ├── example_core_launcher.py ├── example_directory_commands.py ├── example_directory_launcher.py ├── example_dynamic_launcher.py ├── example_filecore_launcher.py ├── example_fileibrun_launcher.py ├── example_findtar_launcher.py ├── example_gpu_launcher.py ├── example_gromacs_launcher.py ├── example_ibrun_launcher.py ├── example_local_launcher.py ├── example_manylines_launcher.py ├── example_mod_dir.py ├── example_mpiexec_launcher.py ├── example_mpijob_flex.py ├── example_node_launcher.py ├── example_scratch_launcher.py ├── example_submit_launcher.py ├── example_truncate_launcher.py ├── example_variable_core_launcher.py ├── filecorelines ├── fileparallellines ├── findtar │ ├── dir1 │ │ └── file1 │ ├── dir10 │ │ └── file10 │ ├── dir11 │ │ └── file11 │ ├── dir12 │ │ └── file12 │ ├── dir13 │ │ └── file13 │ ├── dir14 │ │ └── file14 │ ├── dir15 │ │ └── file15 │ ├── dir16 │ │ └── file16 │ ├── dir17 │ │ └── file17 │ ├── dir18 │ │ └── file18 │ ├── dir19 │ │ └── file19 │ ├── dir2 │ │ └── file2 │ ├── dir20 │ │ └── file20 │ ├── dir21 │ │ └── file21 │ ├── dir22 │ │ └── file22 │ ├── dir23 │ │ └── file23 │ ├── dir24 │ │ └── file24 │ ├── dir25 │ │ └── file25 │ ├── dir26 │ │ └── file26 │ ├── dir27 │ │ └── file27 │ ├── dir28 │ │ └── file28 │ ├── dir29 │ │ └── file29 │ ├── dir3 │ │ └── file3 │ ├── dir30 │ │ └── file30 │ ├── dir31 │ │ └── file31 │ ├── dir32 │ │ └── file32 │ ├── dir33 │ │ └── file33 │ ├── dir34 │ │ └── file34 │ ├── dir35 │ │ └── file35 │ ├── dir36 │ │ └── file36 │ ├── dir37 │ │ └── file37 │ ├── dir38 │ │ └── file38 │ ├── dir39 │ │ └── file39 │ ├── dir4 │ │ └── file4 │ ├── dir40 │ │ └── file40 │ ├── dir41 │ │ └── file41 │ ├── dir42 │ │ └── file42 │ ├── dir43 │ │ └── file43 │ ├── dir44 │ │ └── file44 │ ├── dir45 │ │ └── file45 │ ├── dir46 │ │ └── file46 │ ├── dir47 │ │ └── file47 │ ├── dir48 │ │ └── file48 │ ├── dir49 │ │ └── file49 │ ├── dir5 │ │ └── file5 │ ├── dir50 │ │ └── file50 │ ├── dir51 │ │ └── file51 │ ├── dir52 │ │ └── file52 │ ├── dir53 │ │ └── file53 │ ├── dir54 │ │ └── file54 │ ├── dir55 │ │ └── file55 │ ├── dir56 │ │ └── file56 │ ├── dir57 │ │ └── file57 │ ├── dir58 │ │ └── file58 │ ├── dir59 │ │ └── file59 │ ├── dir6 │ │ └── file6 │ ├── dir60 │ │ └── file60 │ ├── dir61 │ │ └── file61 │ ├── dir62 │ │ └── file62 │ ├── dir63 │ │ └── file63 │ ├── dir64 │ │ └── file64 │ ├── dir65 │ │ └── file65 │ ├── dir66 │ │ └── file66 │ ├── dir67 │ │ └── file67 │ ├── dir68 │ │ └── file68 │ ├── dir69 │ │ └── file69 │ ├── dir7 │ │ └── file7 │ ├── dir70 │ │ └── file70 │ ├── dir71 │ │ └── file71 │ ├── dir72 │ │ └── file72 │ ├── dir73 │ │ └── file73 │ ├── dir74 │ │ └── file74 │ ├── dir75 │ │ └── file75 │ ├── dir8 │ │ └── file8 │ └── dir9 │ │ └── file9 ├── findtarlines ├── gpucommandlines ├── gpusleep.cu ├── gromacslines ├── jobscript_template ├── local_launcher_path.sh ├── make_commandlines.py ├── make_dir_example.py ├── make_parallel_lines.py ├── make_sleepcommandlines.py ├── manycommandlines ├── nodecommandlines ├── parallel.c ├── parallelexeclines ├── parallellines ├── pylauncher_tests.sh ├── randomaction.c ├── randomcomma.c ├── randomsleep.c ├── srunlines ├── submitlines └── wrong_variable_core_launcher.py └── tutorial ├── Makefile ├── handout.pdf ├── handout.tex ├── random_commandlines.py ├── random_wait.c └── run_random.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/Makefile -------------------------------------------------------------------------------- /PBS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/PBS_README.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/README.md -------------------------------------------------------------------------------- /docs/PyLauncher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/PyLauncher.pdf -------------------------------------------------------------------------------- /docs/graphics/launcher-structure.cdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/graphics/launcher-structure.cdd -------------------------------------------------------------------------------- /docs/graphics/launcher-structure.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/graphics/launcher-structure.jpeg -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_modules/index.html -------------------------------------------------------------------------------- /docs/html/_modules/pylauncher3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_modules/pylauncher3.html -------------------------------------------------------------------------------- /docs/html/_sources/extend.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/extend.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/implementation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/implementation.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/introduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/introduction.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/testing.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/testing.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/trace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/trace.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/tutorial.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_sources/tutorial.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/classic.css -------------------------------------------------------------------------------- /docs/html/_static/default.css: -------------------------------------------------------------------------------- 1 | @import url("classic.css"); 2 | -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/sidebar.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/extend.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/implementation.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/introduction.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/html/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/testing.html -------------------------------------------------------------------------------- /docs/html/trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/trace.html -------------------------------------------------------------------------------- /docs/html/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/html/tutorial.html -------------------------------------------------------------------------------- /docs/launcher.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/launcher.pptx -------------------------------------------------------------------------------- /docs/man/pylauncher.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/man/pylauncher.1 -------------------------------------------------------------------------------- /docs/rst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/Makefile -------------------------------------------------------------------------------- /docs/rst/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/conf.py -------------------------------------------------------------------------------- /docs/rst/extend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/extend.rst -------------------------------------------------------------------------------- /docs/rst/extend.rst.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/extend.rst.orig -------------------------------------------------------------------------------- /docs/rst/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/implementation.rst -------------------------------------------------------------------------------- /docs/rst/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/index.rst -------------------------------------------------------------------------------- /docs/rst/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/introduction.rst -------------------------------------------------------------------------------- /docs/rst/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/testing.rst -------------------------------------------------------------------------------- /docs/rst/trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/trace.rst -------------------------------------------------------------------------------- /docs/rst/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/docs/rst/tutorial.rst -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/dbexample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/Makefile -------------------------------------------------------------------------------- /examples/dbexample/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/README -------------------------------------------------------------------------------- /examples/dbexample/db_command_lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/db_command_lines -------------------------------------------------------------------------------- /examples/dbexample/dbcommandlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/dbcommandlines.py -------------------------------------------------------------------------------- /examples/dbexample/dblauncher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/dblauncher.py -------------------------------------------------------------------------------- /examples/dbexample/dot-dbrc-example: -------------------------------------------------------------------------------- 1 | databasepassword 2 | -------------------------------------------------------------------------------- /examples/dbexample/jobscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/jobscript -------------------------------------------------------------------------------- /examples/dbexample/todb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/dbexample/todb.py -------------------------------------------------------------------------------- /examples/examples_in_progress/example_paramiko_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/examples_in_progress/example_paramiko_test.py -------------------------------------------------------------------------------- /examples/examples_in_progress/example_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/examples_in_progress/example_sleep.py -------------------------------------------------------------------------------- /examples/examples_in_progress/example_sleep_lots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/examples_in_progress/example_sleep_lots.py -------------------------------------------------------------------------------- /examples/examples_in_progress/test_paramiko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/examples_in_progress/test_paramiko.py -------------------------------------------------------------------------------- /examples/jobscript.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/jobscript.big -------------------------------------------------------------------------------- /examples/jobscript.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/jobscript.host -------------------------------------------------------------------------------- /examples/jobscript.unittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/jobscript.unittest -------------------------------------------------------------------------------- /examples/jobscript_template.ls5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/jobscript_template.ls5 -------------------------------------------------------------------------------- /examples/jobscript_template.stampede2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/jobscript_template.stampede2 -------------------------------------------------------------------------------- /examples/local_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/local_paths.sh -------------------------------------------------------------------------------- /examples/parallellinescores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/parallellinescores -------------------------------------------------------------------------------- /examples/resume/example_classic_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/resume/example_classic_launcher.py -------------------------------------------------------------------------------- /examples/resume/example_resume_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/resume/example_resume_launcher.py -------------------------------------------------------------------------------- /examples/resume/jobscr_resume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/resume/jobscr_resume -------------------------------------------------------------------------------- /examples/resume/jobscr_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/resume/jobscr_start -------------------------------------------------------------------------------- /examples/sockets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/sockets/Makefile -------------------------------------------------------------------------------- /examples/sockets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/sockets/README -------------------------------------------------------------------------------- /examples/sockets/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/sockets/driver.py -------------------------------------------------------------------------------- /examples/sockets/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/examples/sockets/server.py -------------------------------------------------------------------------------- /hostlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/hostlist.py -------------------------------------------------------------------------------- /hostlist114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/hostlist114.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/scripts/cluster.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/hostlist3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/src/hostlist3.py -------------------------------------------------------------------------------- /src/pylauncher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/src/pylauncher/__init__.py -------------------------------------------------------------------------------- /src/pylauncher/launcher_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/src/pylauncher/launcher_tests.py -------------------------------------------------------------------------------- /src/pylauncher/pylauncher2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/src/pylauncher/pylauncher2.py -------------------------------------------------------------------------------- /src/pylauncher/pylauncher_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/src/pylauncher/pylauncher_core.py -------------------------------------------------------------------------------- /tests/Make.programs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/Make.programs -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/barriercommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/barriercommandlines -------------------------------------------------------------------------------- /tests/bigcorecommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/bigcorecommandlines -------------------------------------------------------------------------------- /tests/commalines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/commalines -------------------------------------------------------------------------------- /tests/commandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/commandlines -------------------------------------------------------------------------------- /tests/corecommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/corecommandlines -------------------------------------------------------------------------------- /tests/corecount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/corecount.c -------------------------------------------------------------------------------- /tests/example_barrier_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_barrier_launcher.py -------------------------------------------------------------------------------- /tests/example_bigcore_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_bigcore_launcher.py -------------------------------------------------------------------------------- /tests/example_classic_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_classic_launcher.py -------------------------------------------------------------------------------- /tests/example_comma_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_comma_launcher.py -------------------------------------------------------------------------------- /tests/example_core_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_core_launcher.py -------------------------------------------------------------------------------- /tests/example_directory_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_directory_commands.py -------------------------------------------------------------------------------- /tests/example_directory_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_directory_launcher.py -------------------------------------------------------------------------------- /tests/example_dynamic_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_dynamic_launcher.py -------------------------------------------------------------------------------- /tests/example_filecore_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_filecore_launcher.py -------------------------------------------------------------------------------- /tests/example_fileibrun_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_fileibrun_launcher.py -------------------------------------------------------------------------------- /tests/example_findtar_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_findtar_launcher.py -------------------------------------------------------------------------------- /tests/example_gpu_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_gpu_launcher.py -------------------------------------------------------------------------------- /tests/example_gromacs_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_gromacs_launcher.py -------------------------------------------------------------------------------- /tests/example_ibrun_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_ibrun_launcher.py -------------------------------------------------------------------------------- /tests/example_local_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_local_launcher.py -------------------------------------------------------------------------------- /tests/example_manylines_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_manylines_launcher.py -------------------------------------------------------------------------------- /tests/example_mod_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_mod_dir.py -------------------------------------------------------------------------------- /tests/example_mpiexec_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_mpiexec_launcher.py -------------------------------------------------------------------------------- /tests/example_mpijob_flex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_mpijob_flex.py -------------------------------------------------------------------------------- /tests/example_node_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_node_launcher.py -------------------------------------------------------------------------------- /tests/example_scratch_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_scratch_launcher.py -------------------------------------------------------------------------------- /tests/example_submit_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_submit_launcher.py -------------------------------------------------------------------------------- /tests/example_truncate_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_truncate_launcher.py -------------------------------------------------------------------------------- /tests/example_variable_core_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/example_variable_core_launcher.py -------------------------------------------------------------------------------- /tests/filecorelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/filecorelines -------------------------------------------------------------------------------- /tests/fileparallellines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/fileparallellines -------------------------------------------------------------------------------- /tests/findtar/dir1/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir10/file10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir11/file11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir12/file12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir13/file13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir14/file14: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir15/file15: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir16/file16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir17/file17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir18/file18: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir19/file19: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir2/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir20/file20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir21/file21: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir22/file22: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir23/file23: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir24/file24: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir25/file25: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir26/file26: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir27/file27: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir28/file28: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir29/file29: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir3/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir30/file30: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir31/file31: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir32/file32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir33/file33: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir34/file34: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir35/file35: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir36/file36: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir37/file37: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir38/file38: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir39/file39: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir4/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir40/file40: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir41/file41: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir42/file42: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir43/file43: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir44/file44: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir45/file45: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir46/file46: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir47/file47: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir48/file48: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir49/file49: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir5/file5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir50/file50: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir51/file51: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir52/file52: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir53/file53: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir54/file54: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir55/file55: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir56/file56: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir57/file57: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir58/file58: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir59/file59: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir6/file6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir60/file60: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir61/file61: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir62/file62: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir63/file63: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir64/file64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir65/file65: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir66/file66: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir67/file67: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir68/file68: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir69/file69: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir7/file7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir70/file70: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir71/file71: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir72/file72: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir73/file73: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir74/file74: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir75/file75: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir8/file8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtar/dir9/file9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/findtarlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/findtarlines -------------------------------------------------------------------------------- /tests/gpucommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/gpucommandlines -------------------------------------------------------------------------------- /tests/gpusleep.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/gpusleep.cu -------------------------------------------------------------------------------- /tests/gromacslines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/gromacslines -------------------------------------------------------------------------------- /tests/jobscript_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/jobscript_template -------------------------------------------------------------------------------- /tests/local_launcher_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/local_launcher_path.sh -------------------------------------------------------------------------------- /tests/make_commandlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/make_commandlines.py -------------------------------------------------------------------------------- /tests/make_dir_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/make_dir_example.py -------------------------------------------------------------------------------- /tests/make_parallel_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/make_parallel_lines.py -------------------------------------------------------------------------------- /tests/make_sleepcommandlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/make_sleepcommandlines.py -------------------------------------------------------------------------------- /tests/manycommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/manycommandlines -------------------------------------------------------------------------------- /tests/nodecommandlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/nodecommandlines -------------------------------------------------------------------------------- /tests/parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/parallel.c -------------------------------------------------------------------------------- /tests/parallelexeclines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/parallelexeclines -------------------------------------------------------------------------------- /tests/parallellines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/parallellines -------------------------------------------------------------------------------- /tests/pylauncher_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/pylauncher_tests.sh -------------------------------------------------------------------------------- /tests/randomaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/randomaction.c -------------------------------------------------------------------------------- /tests/randomcomma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/randomcomma.c -------------------------------------------------------------------------------- /tests/randomsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/randomsleep.c -------------------------------------------------------------------------------- /tests/srunlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/srunlines -------------------------------------------------------------------------------- /tests/submitlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/submitlines -------------------------------------------------------------------------------- /tests/wrong_variable_core_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tests/wrong_variable_core_launcher.py -------------------------------------------------------------------------------- /tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/Makefile -------------------------------------------------------------------------------- /tutorial/handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/handout.pdf -------------------------------------------------------------------------------- /tutorial/handout.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/handout.tex -------------------------------------------------------------------------------- /tutorial/random_commandlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/random_commandlines.py -------------------------------------------------------------------------------- /tutorial/random_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/random_wait.c -------------------------------------------------------------------------------- /tutorial/run_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/pylauncher/HEAD/tutorial/run_random.py --------------------------------------------------------------------------------