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

Fix inversion error logging and calculation stopping

parent e3a10ef1
No related branches found
No related tags found
No related merge requests found
...@@ -223,7 +223,7 @@ void cluster(const string& config_file, const string& data_file, const string& o ...@@ -223,7 +223,7 @@ void cluster(const string& config_file, const string& data_file, const string& o
delete time_logger; delete time_logger;
delete sconf; delete sconf;
delete gconf; delete gconf;
return jer; return;
} }
// 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
...@@ -639,7 +639,7 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf ...@@ -639,7 +639,7 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf
logger->log(message); logger->log(message);
if (jer != 0) { if (jer != 0) {
message = "ERROR: matrix inversion ended with error code " + to_string(jer) + ".\n"; message = "ERROR: matrix inversion ended with error code " + to_string(jer) + ".\n";
logger.err(message); 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