Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
65e2ddea
Commit
65e2ddea
authored
16 years ago
by
Adriaan Renting
Browse files
Options
Downloads
Patches
Plain Diff
Bug #1216:Created default values for ACCmain
parent
ed817e02
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCS/ACC/PLC/src/ACCmain.cc
+24
-12
24 additions, 12 deletions
LCS/ACC/PLC/src/ACCmain.cc
with
24 additions
and
12 deletions
LCS/ACC/PLC/src/ACCmain.cc
+
24
−
12
View file @
65e2ddea
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment