Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Switched the 'session' mode to a background mode with 1 thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbellec committed Sep 5, 2015
1 parent 4e21c2a commit 18ba214
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion psom_run_pipeline.m
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
% MODE
% (string, default GB_PSOM_MODE defined in PSOM_GB_VARS)
% how to execute the jobs :
% 'session' : current Matlab session.
% 'session' : same as 'background', with MAX_QUEUED=1.
% 'background' : background execution, not-unlogin-proofed
% (asynchronous system call).
% 'batch' : background execution, unlogin-proofed ('at' in
Expand Down Expand Up @@ -327,6 +327,7 @@
if strcmp(opt.mode,'session')
opt.max_queued = 1;
max_queued = 1;
opt.mode = 'background';
end

if opt.max_queued == 0
Expand Down

0 comments on commit 18ba214

Please sign in to comment.