Skip to content
Snippets Groups Projects
Commit e3a10ef1 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Stop calculation with message if first matrix inversion fails

parent fd8108d1
No related branches found
No related tags found
No related merge requests found
...@@ -212,6 +212,19 @@ void cluster(const string& config_file, const string& data_file, const string& o ...@@ -212,6 +212,19 @@ void cluster(const string& config_file, const string& data_file, const string& o
message = "INFO: First iteration took " + to_string(elapsed.count()) + "s.\n"; message = "INFO: First iteration took " + to_string(elapsed.count()) + "s.\n";
logger->log(message); logger->log(message);
time_logger->log(message); time_logger->log(message);
if (jer != 0) {
// First loop failed. Halt the calculation.
tppoan.close();
fclose(timing_file);
fclose(output);
delete p_scattering_angles;
delete cid;
delete logger;
delete time_logger;
delete sconf;
delete gconf;
return jer;
}
// here go the calls that send data to be duplicated on other MPI processes from process 0 to others, using MPI broadcasts, but only if MPI is actually used // here go the calls that send data to be duplicated on other MPI processes from process 0 to others, using MPI broadcasts, but only if MPI is actually used
#ifdef MPI_VERSION #ifdef MPI_VERSION
...@@ -625,6 +638,8 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf ...@@ -625,6 +638,8 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf
message = "INFO: matrix inversion for scale " + to_string(jxi488) + " took " + to_string(elapsed.count()) + "s.\n"; message = "INFO: matrix inversion for scale " + to_string(jxi488) + " took " + to_string(elapsed.count()) + "s.\n";
logger->log(message); logger->log(message);
if (jer != 0) { if (jer != 0) {
message = "ERROR: matrix inversion ended with error code " + to_string(jer) + ".\n";
logger.err(message);
return jer; return jer;
// break; // jxi488 loop: goes to memory clean // break; // jxi488 loop: goes to memory clean
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment