Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mxqsub: Default tmpdir to 100G
  • Loading branch information
donald committed May 10, 2022
1 parent 9640f65 commit efe43f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mxqsub.c
Expand Up @@ -67,7 +67,7 @@ static void print_usage(void)
"\n"
" -j, --processors=NUMBER set number of processors (default: 1)\n"
" -m, --memory=SIZE set amount of memory (default: 2G)\n"
" --tmpdir=SIZE set size of MXQ_JOB_TMPDIR (default: 0)\n"
" --tmpdir=SIZE set size of MXQ_JOB_TMPDIR (default: 100G)\n"
" --gpu request a gpu\n"
" --blacklist=STRING set list of blacklisted servers (default: '')\n"
" --whitelist=STRING set list of whitelisted servers (default: '')\n"
Expand Down Expand Up @@ -803,7 +803,7 @@ int main(int argc, char *argv[])
arg_debug = 0;
arg_jobflags = 0;
arg_groupid = UINT64_UNSET;
arg_tmpdir = 0;
arg_tmpdir = 100; // 100G
arg_blacklist = NULL;
arg_whitelist = NULL;
arg_prerequisites = "";
Expand Down

0 comments on commit efe43f4

Please sign in to comment.