-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dump parallel failure to log unless "debug" is "true"
- Loading branch information
Showing
2 changed files
with
141 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
171 changes: 103 additions & 68 deletions
171
herbert_core/classes/MPIFramework/@JobDispatcher/private/display_fail_jobs_.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,142 @@ | ||
function display_fail_jobs_(obj,outputs,n_failed,n_workers,Err_code) | ||
% Auxiliary method to display job results if the job have | ||
% failed | ||
function display_fail_jobs_(obj, outputs, n_failed, n_workers, err_code) | ||
% Auxiliary method to display job results if the job has failed | ||
% | ||
% Input: | ||
% Outputs -- usually cellarray of the results, returned by a | ||
% outputs -- usually cellarray of the results, returned by a | ||
% parallel job | ||
% | ||
% n_failed -- number of tasks failed as the result of parallel | ||
% job | ||
% | ||
% n_workers-- number of labs used by parallel job initially | ||
% | ||
% Err_code -- the text string in the form | ||
% err_code -- the text string in the form | ||
% ERROR_CLASS:error_reason to form identifier of | ||
% the exception to throw | ||
% If this paraemter is empty, it does not throw anything. | ||
% If this parameter is empty, it does not throw anything. | ||
% Throws: | ||
% First exception returned from the cluster if such exceptions | ||
% are present or exception with Err_code as MExeption.identifier | ||
% are present or exception with err_code as MException.identifier | ||
% if no errors returned | ||
% | ||
|
||
mEXceptions_outputs = false(size(outputs)); | ||
debug_flag = get(parallel_config, 'debug'); | ||
|
||
if ~debug_flag | ||
log = sprintf("par_fail_%s.log", obj.job_id); | ||
fh = fopen(log, 'w'); | ||
end | ||
|
||
if ~exist('err_code', 'var') || isempty(err_code) | ||
warn_code = 'HORACE:display_fail_jobs:parallel_failure'; | ||
else | ||
warn_code = err_code; | ||
end | ||
|
||
MExceptions_outputs = false(size(outputs)); | ||
|
||
if iscell(outputs) | ||
fprintf('Job %s have failed. Outputs: \n',obj.job_id); | ||
fprintf('Job %s failed. Outputs: \n', obj.job_id); | ||
|
||
for i=1:numel(outputs) | ||
if isa(outputs{i},'MException') | ||
mEXceptions_outputs(i) = true; | ||
fprintf('Task N%d failed. Error %s; Message %s\n',... | ||
i,outputs{i}.identifier,outputs{i}.message); | ||
elseif isfield(outputs{i},'error') && isa(outputs{i}.error,'MException') | ||
mEXceptions_outputs(i) = true; | ||
fprintf('Task N%d failed. Reason: %s\n',... | ||
i,outputs{i}.fail_reason); | ||
|
||
if isa(outputs{i}, 'MException') | ||
MExceptions_outputs(i) = true; | ||
debug_print('Task %d failed. Error %s; Message %s\n', ... | ||
i, outputs{i}.identifier, outputs{i}.message); | ||
|
||
elseif isfield(outputs{i}, 'error') && isa(outputs{i}.error, 'MException') | ||
MExceptions_outputs(i) = true; | ||
debug_print('Task %d failed. Reason: %s\n', ... | ||
i, outputs{i}.fail_reason); | ||
|
||
else | ||
mEXceptions_outputs(i) = false; | ||
fprintf('Task N%d failed. Outputs: \n',i); | ||
MExceptions_outputs(i) = false; | ||
debug_print('Task %d failed. Outputs: \n', i); | ||
|
||
if isempty(outputs{i}) | ||
fprintf('[]\n'); | ||
debug_print('[]\n'); | ||
else | ||
disp(outputs{i}); | ||
debug_print(disp2str(outputs{i})); | ||
end | ||
end | ||
end | ||
elseif isempty(mEXceptions_outputs) | ||
|
||
elseif isempty(outputs) | ||
ext_type = class(outputs); | ||
fprintf('Job %s have failed sending unhandled exception: %s\n',obj.job_id,ext_type); | ||
if ~isempty(Err_code) | ||
error(Err_code,'Parallel job have failed throwing unhandled exception: %s',ext_type); | ||
end | ||
debug_print('Job %s failed with unhandled exception: %s\n', obj.job_id, ext_type); | ||
|
||
error(err_code, 'Parallel job failed with unhandled exception: %s', ext_type); | ||
else | ||
mEXceptions_outputs(1) = isa(outputs,'MException'); | ||
fprintf('Job %s have failed. Output: \n',obj.job_id); | ||
disp(outputs); | ||
|
||
MExceptions_outputs(1) = isa(outputs, 'MException'); | ||
debug_print('Job %s failed. Output: \n', obj.job_id); | ||
debug_print(disp2str(outputs)); | ||
|
||
if numel(outputs) == 1 | ||
disp_exception(outputs); | ||
end | ||
|
||
end | ||
if any(mEXceptions_outputs) | ||
if isempty(Err_code) | ||
warn_code = 'DISPLAY_FAIL_JOBS:parallel_failure'; | ||
else | ||
warn_code = Err_code; | ||
end | ||
warning(warn_code ,... | ||
' Number: %d parallel tasks out of total: %d tasks have failed',... | ||
n_failed,n_workers) | ||
errOutputs = outputs(mEXceptions_outputs); | ||
if iscell(errOutputs) | ||
for i=1:numel(errOutputs) | ||
disp(['***** Error output N ',num2str(i)]); | ||
disp_exception(errOutputs{i}); | ||
|
||
if any(MExceptions_outputs) | ||
|
||
warning(warn_code, '%d of %d tasks have failed', n_failed, n_workers) | ||
|
||
err_outputs = outputs(MExceptions_outputs); | ||
|
||
if iscell(err_outputs) | ||
for i=1:numel(err_outputs) | ||
debug_print(['***** Error output N ', num2str(i)]); | ||
disp_exception(err_outputs{i}); | ||
end | ||
else | ||
disp_exception(errOutputs); | ||
disp_exception(err_outputs); | ||
end | ||
if ~isempty(Err_code) | ||
error(Err_code,'Parallel job have failed, producing errors above.'); | ||
end | ||
else | ||
if ~isempty(Err_code) | ||
error(Err_code,... | ||
' Number: %d parallel tasks out of total: %d tasks have failed without returning the reason',... | ||
n_failed,n_workers) | ||
if ~isempty(err_code) | ||
error(err_code, 'Parallel job failed, producing the errors above.'); | ||
end | ||
elseif ~isempty(err_code) | ||
error(err_code, ... | ||
'%d of %d tasks have failed without returning the reason', ... | ||
n_failed, n_workers) | ||
end | ||
|
||
function disp_exception(errOutput) | ||
% | ||
if isa(errOutput,'MException') | ||
disp(getReport(errOutput)) | ||
elseif iscell(errOutput) | ||
disp('***************************************************************'); | ||
disp(errOutput); | ||
for i=1:numel(errOutput) | ||
sprintf(' Cell %d, contains: %s\n',i,evalc('disp(errOutput{i}')); | ||
disp_exception(errOutput{i}); | ||
if ~debug_flag | ||
fclose(fh); | ||
end | ||
|
||
|
||
function disp_exception(err_output) | ||
|
||
if isa(err_output, 'MException') | ||
debug_print(disp2str(getReport(err_output))) | ||
|
||
elseif iscell(err_output) | ||
|
||
for i=1:numel(err_output) | ||
debug_print(' Cell %d, contains: \n', i); | ||
disp_exception(err_output{i}); | ||
end | ||
disp('***************************************************************'); | ||
elseif isfield(errOutput,'error') && isa(errOutput.error,'MException') | ||
for i=1:numel(errOutput.error) | ||
disp(getReport(errOutput.error(i))); | ||
|
||
elseif isfield(err_output, 'error') && isa(err_output.error, 'MException') | ||
|
||
for i=1:numel(err_output.error) | ||
debug_print(disp2str(getReport(err_output.error(i)))); | ||
end | ||
|
||
else | ||
disp('unknown type of error returned') | ||
debug_print('unknown type of error: \n %s', disp2str(err_output)); | ||
|
||
end | ||
|
||
end | ||
|
||
function debug_print(varargin) | ||
if debug_flag | ||
fprintf(varargin{:}); | ||
else | ||
fprintf(fh, varargin{:}); | ||
end | ||
end | ||
|
||
end |