generated from automaticanalysis/aa-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaas_matlabpool.m
31 lines (31 loc) · 932 Bytes
/
aas_matlabpool.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function out = aas_matlabpool(varargin)
switch varargin{1}
case 'getcurrent'
try out = gcp('nocreate'); catch
warning('Not supported by MATLAB %s',sprintf('%d.',getmatlabversion));
out = [];
end
case 'isopen'
try out = ~isempty(gcp('nocreate')); catch, out = matlabpool('size') > 0; end
case 'close'
try
p = gcp('nocreate');
if ~isempty(p), delete(p); end
catch
try
matlabpool('close');
catch E
if strcmp(E.identifier, 'parallel:convenience:InteractiveSessionNotRunning')
warning('No open pool is found');
else
rethrow(E);
end
end
end
otherwise % start
try out = parpool(varargin{:}); catch
matlabpool(varargin{:});
out = [];
end
end
end