Skip to content
Snippets Groups Projects
Commit 65e2ddea authored by Adriaan Renting's avatar Adriaan Renting
Browse files

Bug #1216:Created default values for ACCmain

parent ed817e02
No related branches found
No related tags found
No related merge requests found
...@@ -55,12 +55,12 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) { ...@@ -55,12 +55,12 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) {
int myRank = TH_MPI::getCurrentRank(); int myRank = TH_MPI::getCurrentRank();
// The MPI standard does not demand that the commandline // The MPI standard does not demand that the commandline
// arguments are distributed, so we do it ourselves. // arguments are distributed, so we do it ourselves.
// Broadcast number of arguments // Broadcast number of arguments
MPI_Bcast(&argc, 1, MPI_INT, 0, MPI_COMM_WORLD); MPI_Bcast(&argc, 1, MPI_INT, 0, MPI_COMM_WORLD);
// Some MPI implementations block on the Bcast. Synchronize // Some MPI implementations block on the Bcast. Synchronize
// the nodes to avoid deadlock. // the nodes to avoid deadlock.
MPI_Barrier(MPI_COMM_WORLD); MPI_Barrier(MPI_COMM_WORLD);
if (myRank != 0) { if (myRank != 0) {
...@@ -83,7 +83,7 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) { ...@@ -83,7 +83,7 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) {
argv[arg] = new char[arglen]; argv[arg] = new char[arglen];
} }
// Broadcast the argument; // Broadcast the argument;
MPI_Bcast(argv[arg], arglen, MPI_BYTE, 0, MPI_COMM_WORLD); MPI_Bcast(argv[arg], arglen, MPI_BYTE, 0, MPI_COMM_WORLD);
} }
#endif #endif
...@@ -102,7 +102,14 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) { ...@@ -102,7 +102,14 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) {
try { try {
// Read in the parameterset. // Read in the parameterset.
ConfigLocator CL; ConfigLocator CL;
string ParsetFile = CL.locate(argv[1 + (ACCmode ? 1 : 0)]); string ParsetFile;
if (argc > 1) {
ParsetFile = CL.locate(argv[1 + (ACCmode ? 1 : 0)]);
}
else {
ParsetFile = CL.locate(programName + ".parset");
}
ASSERTSTR(!ParsetFile.empty(), "Could not find parameterset " << argv[1]); ASSERTSTR(!ParsetFile.empty(), "Could not find parameterset " << argv[1]);
LOG_INFO_STR("Using parameterset " << ParsetFile); LOG_INFO_STR("Using parameterset " << ParsetFile);
globalParameterSet()->adoptFile(ParsetFile); globalParameterSet()->adoptFile(ParsetFile);
...@@ -111,34 +118,39 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) { ...@@ -111,34 +118,39 @@ int ACCmain (int argc, char* orig_argv[], ProcessControl* theProcess) {
ParameterSet arg; ParameterSet arg;
arg.add("ProgramName", programName); arg.add("ProgramName", programName);
// Create the correct ProcCtrlProxy and start it. // Create the correct ProcCtrlProxy and start it.
if (ACCmode) { if (ACCmode) {
arg.add("ProcID", argv[3]); arg.add("ProcID", argv[3]);
result = (ProcCtrlRemote(theProcess))(arg); result = (ProcCtrlRemote(theProcess))(arg);
} }
else { else {
arg.add("NoRuns", argv[argc-1]); if (argc > 1) {
arg.add("NoRuns", argv[argc-1]);
}
else {
arg.add("NoRuns", "1");
}
result = (ProcCtrlCmdLine(theProcess))(arg); result = (ProcCtrlCmdLine(theProcess))(arg);
} }
} }
catch (Exception& ex) { catch (Exception& ex) {
LOG_FATAL_STR("Caught exception: " << ex << endl); LOG_FATAL_STR("Caught exception: " << ex << endl);
result = 1; result = 1;
} }
catch (std::exception& ex) { catch (std::exception& ex) {
LOG_FATAL_STR("Caught std::exception: " << ex.what()); LOG_FATAL_STR("Caught std::exception: " << ex.what());
result = 1; result = 1;
} }
catch (...) { catch (...) {
LOG_FATAL_STR("Caught unknown exception."); LOG_FATAL_STR("Caught unknown exception.");
result = 1; result = 1;
} }
#ifdef HAVE_MPI #ifdef HAVE_MPI
TH_MPI::finalize(); TH_MPI::finalize();
#endif #endif
LOG_INFO(programName + " terminated " + LOG_INFO(programName + " terminated " +
(result ? "with an error" : "normally")); (result ? "with an error" : "normally"));
return result; return result;
......
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