Skip to content

Commit f47a3e9

Browse files
author
Trevor
committed
update readme with queue selection
1 parent 6ebc4fa commit f47a3e9

File tree

1 file changed

+34
-17
lines changed

1 file changed

+34
-17
lines changed

README.md

+34-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# SGE-make
2-
Running make on an SGE
1+
# rmake
2+
3+
Formerly `SGE-make`.
4+
A better way to submit multiple jobs to a grid engine, with options for controlling the wrapper (`rmake`) and the underlying `make` call.
35

46
# Introduction
57

68
The purpose of `rmake`<sup>1</sup> is to execute a makefile by submitting individual `make` commands as individual jobs to the gridengine. This is necessary when (1) syntax of your makefile is complicated enough that it does not work correctly wtih `qmake`, or (2) when you want to use the global queue of the gridengine without modifying your makefile.
79

8-
`rmake` does this by recognizing the jobs you would like to submit and
9-
sending them one by one to `qsub`. To do so, `rmake` requires
10-
that your directory already be setup to handle [recursive
11-
make](https://www.gnu.org/software/make/manual/html_node/Recursion.html). I.e. the
12-
directory structure must look something like this:
10+
`rmake` does this by recognizing the jobs you would like to submit and sending them one by one to `qsub`. To do so, `rmake` requires that your directory already be setup to handle [recursive make](https://www.gnu.org/software/make/manual/html_node/Recursion.html). In other words, the directory structure must look something like this:
1311

1412
subjects/
1513
+ Makefile
@@ -43,13 +41,14 @@ where the top-level '`Makefile`' contains commands like below to allow recursion
4341

4442
This is the way that people are encouraged to structure subject-level processing. `rmake` will perform a brief sanity to check to ensure this directory structure is enforced, but be aware willy-nilly directory structure might result in weird errors.
4543

46-
<sup>1</sup> Because *r* comes after *q*, you see.
44+
<sup>1</sup> Because "*r*" comes after "*q*," you see.
4745

4846
# Using `rmake`
4947

50-
To distinguish the options to `rmake` from options to the underlying `make` call we use the convention that lowercase flags are passed to the underlying `make` call, and uppercase flags are passed to `rmake`.
48+
To distinguish the options to `rmake` from options to the underlying `make` call we use the convention that lowercase flags are passed to the underlying
49+
`make` call, and uppercase flags control `rmake`.
5150

52-
`qsub` won't accept job names that start with a number, so `rmake` automatically prepends "s" to IDs that start with a number.
51+
**Note**: `qsub` won't accept job names that start with a number, so `rmake` automatically prepends "s" to IDs that start with a number.
5352

5453
## `rmake` options
5554

@@ -59,11 +58,20 @@ Options with and asterisk `*` require an argument
5958
* **`-D`** Recon; do everything but submit `qsub` jobs.
6059
* **`-H`** Print a help message and exit.
6160
* **`-M`** Debug; print arguments to make call. (No qsub submission.)
62-
* **`-N *`** Set job name; if not set, it will be set to target, then a random name.
61+
* **`-N *`** Set job name; if not set, it will be set to target, then
62+
a random name.
6363
* **`-O`** Save output/error files to `qout-$user/` and `qerr-$user`.
64-
* **`-P`** Append `<date>_<time>`` to the jobid.
65-
* **`-S *`** Run qsub on these subjects only; if not set, run on all.
66-
* **`-T *`** Set the target for make. Will accept multiple space-separated targets, if the argument is quoted.
64+
* **`-P`** Append `<date>_<time>`` to the jobid.
65+
* **`-Q *`** Choose which queue. If left unspecified, queue will be chosen
66+
by qsub.
67+
* **`-S *`** Run qsub on these subjects only; if not set, run on all.
68+
* **`-T *`** Set the target for make. Will accept multiple
69+
space-separated targets, if the argument is quoted.
70+
71+
**Note**: Mistyping or chosing a nonexistent queue will result in the error
72+
73+
Unable to run job: Job was rejected because job requests unknown queue "<queue>".
74+
6775

6876
## `make` options
6977

@@ -118,14 +126,23 @@ You can also use a regex. For example, to select only subjects beginning with `1
118126
119127
Note that the regex must be quoted as well, as it is expanded by the shell before being sent to `rmake`.
120128

121-
# Output
129+
## Output
122130

123-
Each `qsub` job results in the creation of two files, named `name.[e,o]ID`, where `name` is the name you gave the job, and `ID` is a numerical ID `qsub` assigned it.
131+
Each `qsub` job results in the creation of two files, named `name.[e,o]ID`, where `name` is the name you gave the job, and `ID` is a numerical ID `qsub` assigned it. If you pass the `-O` option to rmake, these will instead be sorted to directories `qout-$user` and `qerr-$user`
124132

125133
The files with `e` in the name contain the output of `STDERR` if the job had been executed normally, `o` files, `STDOUT`.
126134

127135
These files may be removed if you are satisfied with how your job executed.
128136

137+
# Using the example
138+
139+
You'll notice that the repository contains 10 `test.*` directories, each with a single symlink named `Makefile`. The repository is set up so that you can test rmake right here by running `rmake -T sleep`, which creates the files `hexdump.txt` and `sleep.txt`
140+
141+
The target `sleep` relies on `hexdump.txt`, so in order to rerun jobs, all the `hexdump.txt` files need to be removed.
142+
129143
# Contact
130144

131-
Trevor McAllister-Day -- `[email protected]`
145+
Trevor K.M. Day
146+
147+
GitHub: @TrevorKMDay
148+

0 commit comments

Comments
 (0)