queue: use current matlab or octave as default & docu updates

pull/1/head
Thorsten Liebig 2011-12-19 10:47:38 +01:00
parent a13eb2a583
commit 2a9b39565a
1 changed files with 6 additions and 3 deletions

View File

@ -6,6 +6,11 @@ function [queue] = InitQueue(varargin)
% This can be used to efficiently run an openEMS parameter sweep in parallel % This can be used to efficiently run an openEMS parameter sweep in parallel
% on multiple remote machines. % on multiple remote machines.
% %
% Options:
% DependPath: Add multiple paths, your script may depend on
% UseOctave: Enable/Disable octave usage
% MaxThreads: max. number of parallel executions
%
% Note: % Note:
% - Currently only Linux/Unix is supported % - Currently only Linux/Unix is supported
% - By default Octave is used to spawn parallel functions (saves % - By default Octave is used to spawn parallel functions (saves
@ -49,9 +54,7 @@ if ~isunix
error 'your OS is not supported (Unix only)' error 'your OS is not supported (Unix only)'
end end
% use octave as default to save matlab (floating) licenses queue.use_octave = exist('OCTAVE_VERSION','builtin') ~= 0;
% otherwise many matlab instances are spawned
queue.use_octave = 1;
queue.verbose = 1; queue.verbose = 1;