Skip to content

Commit 8511543

Browse files
author
Si Liu
committed
Update documentation and examples
1 parent 32f8507 commit 8511543

File tree

11 files changed

+47
-841
lines changed

11 files changed

+47
-841
lines changed

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Launcher
2-
Current version: 3/4
3-
Last update: Mar 29, 2019
2+
Current version: 3.7
3+
Last update: July 13, 2020
44

55
Si Liu
66
Texas Advanced Computing Center

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 The University of Texas at Austin
3+
Copyright (c) 2020 The University of Texas at Austin
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

UpdateLog

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
1-
Jan 29, 2020
1+
July 13, 2020
2+
Si Liu
3+
Update examples and documentation
4+
Clean up and release 3.7
5+
6+
7+
8+
Jan 31, 2020
9+
Si Liu
10+
Clean up and release 3.6
11+
212

13+
14+
Jan 29, 2020
15+
Si Liu
316
Adding random sleep at the beginning of the launcher
417
Suggested by Brian Coventry <notifications@github.com>
518

19+
20+
621
Oct 10, 2019
722
Si Liu
823
Clean up and synchronize with the github after all changes
924

1025

26+
27+
1128
Oct 10, 2019
1229
Si Liu
1330
Clean up and merge all pull request
Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,35 @@
11
#!/bin/bash
22
#
3+
# Laucher batch script file for TACC systems (like Frontera, Stampede2, etc.)
4+
# Si Liu
5+
# July 13, 2020
6+
#
37
# Simple SLURM script for submitting multiple serial
48
# jobs (e.g. parametric studies) using a script wrapper
59
# to launch the jobs.
610
#
711
# To use, build the launcher executable and your
812
# serial application(s) and place them in your WORKDIR
9-
# directory. Then, edit the CONTROL_FILE to specify
13+
# directory. Then, edit the LAUNCHER_JOB_FILE to specify
1014
# each executable per process.
1115
#-------------------------------------------------------
12-
#-------------------------------------------------------
1316
#
1417
# <------ Setup Parameters ------>
1518
#
16-
#SBATCH -J Parametric
19+
#SBATCH -J launcher
20+
#SBATCH -N 2
1721
#SBATCH -n 16
1822
#SBATCH -p development
19-
#SBATCH -o Parametric.o%j
20-
#SBATCH -t 00:05:00
21-
# <------ Account String ----->
22-
# <--- (Use this ONLY if you have MULTIPLE accounts) --->
23-
##SBATCH -A
23+
#SBATCH -o Parametric.%j.out
24+
#SBATCH -e Parametric.%j.err
25+
#SBATCH -t 00:24:00
26+
#SBATCH -A <------ Account String ----->
27+
2428
#------------------------------------------------------
2529

26-
export LAUNCHER_PLUGIN_DIR=$LAUNCHER_DIR/plugins
27-
export LAUNCHER_RMI=SLURM
28-
export LAUNCHER_JOB_FILE=jobfile
29-
30+
module load launcher
31+
export LAUNCHER_WORKDIR=Your-Working-Directory-Here
32+
export LAUNCHER_JOB_FILE=helloworld_multi_output
33+
3034
$LAUNCHER_DIR/paramrun
3135

extras/examples/helloworld_short

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)