You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+34-17
Original file line number
Diff line number
Diff 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.
3
5
4
6
# Introduction
5
7
6
8
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.
7
9
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:
13
11
14
12
subjects/
15
13
+ Makefile
@@ -43,13 +41,14 @@ where the top-level '`Makefile`' contains commands like below to allow recursion
43
41
44
42
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.
45
43
46
-
<sup>1</sup> Because *r* comes after *q*, you see.
44
+
<sup>1</sup> Because "*r*" comes after "*q*," you see.
47
45
48
46
# Using `rmake`
49
47
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`.
51
50
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.
53
52
54
53
## `rmake` options
55
54
@@ -59,11 +58,20 @@ Options with and asterisk `*` require an argument
59
58
***`-D`** Recon; do everything but submit `qsub` jobs.
60
59
***`-H`** Print a help message and exit.
61
60
***`-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.
63
63
***`-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
+
67
75
68
76
## `make` options
69
77
@@ -118,14 +126,23 @@ You can also use a regex. For example, to select only subjects beginning with `1
118
126
119
127
Note that the regex must be quoted as well, as it is expanded by the shell before being sent to `rmake`.
120
128
121
-
# Output
129
+
##Output
122
130
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`
124
132
125
133
The files with `e` in the name contain the output of `STDERR` if the job had been executed normally, `o` files, `STDOUT`.
126
134
127
135
These files may be removed if you are satisfied with how your job executed.
128
136
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.
0 commit comments