Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Sébastien Peillet
otb
Commits
446e5939
Commit
446e5939
authored
8 years ago
by
Ludovic Hussonnois
Browse files
Options
Downloads
Patches
Plain Diff
REFAC: Remove log message.
parent
a8db8b4c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx
+0
-4
0 additions, 4 deletions
...pplications/AppDomainTransform/app/otbDomainTransform.cxx
Modules/MPI/MPIConfig/src/otbMPIConfig.cxx
+0
-11
0 additions, 11 deletions
Modules/MPI/MPIConfig/src/otbMPIConfig.cxx
with
0 additions
and
15 deletions
Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx
+
0
−
4
View file @
446e5939
...
...
@@ -84,20 +84,16 @@ private:
void
CleanupFFTWThreads
()
{
std
::
cout
<<
"Start cleanup threads"
<<
std
::
endl
;
// This is a trick to make sure fftw will cleanup its threads when application
// shared lib is released.
#if defined(ITK_USE_FFTWF)
std
::
cout
<<
"ITK_USE_FFTWF"
<<
std
::
endl
;
fftwf_cleanup_threads
();
fftwf_cleanup
();
#endif
#if defined(ITK_USE_FFTWD)
std
::
cout
<<
"ITK_USE_FFTWD"
<<
std
::
endl
;
fftw_cleanup_threads
();
fftw_cleanup
();
#endif
std
::
cout
<<
"End cleanup threads"
<<
std
::
endl
;
}
void
DoInit
()
ITK_OVERRIDE
...
...
This diff is collapsed.
Click to expand it.
Modules/MPI/MPIConfig/src/otbMPIConfig.cxx
+
0
−
11
View file @
446e5939
...
...
@@ -95,8 +95,6 @@ MPIConfig::~MPIConfig()
void
MPIConfig
::
Init
(
int
&
argc
,
char
**&
argv
,
bool
abortOnException
)
{
if
(
!
m_terminated
)
{
std
::
cout
<<
"MPI Initialization : "
<<
this
<<
std
::
endl
;
std
::
flush
(
std
::
cout
);
// Abort on exception
m_abortOnException
=
abortOnException
;
// Initialize
...
...
@@ -141,27 +139,18 @@ void MPIConfig::terminate()
{
if
(
m_initialized
&&
!
m_terminated
)
{
std
::
cout
<<
"Terminate : "
<<
this
<<
std
::
endl
;
std
::
flush
(
std
::
cout
);
if
(
std
::
uncaught_exception
()
&&
m_abortOnException
)
{
std
::
cout
<<
"Abord"
<<
std
::
endl
;
abort
(
EXIT_FAILURE
);
}
else
{
std
::
cout
<<
"Start Finalize MPI"
<<
std
::
endl
;
std
::
flush
(
std
::
cout
);
int
finalized
;
OTB_MPI_CHECK_RESULT
(
MPI_Finalized
,
(
&
finalized
));
if
(
!
finalized
)
{
std
::
cout
<<
"Start 2nd End Finalize MPI"
<<
std
::
endl
;
OTB_MPI_CHECK_RESULT
(
MPI_Finalize
,
(
));
std
::
cout
<<
"End 2nd Finalize MPI"
<<
std
::
endl
;
}
std
::
cout
<<
"End Finalize MPI"
<<
std
::
endl
;
std
::
flush
(
std
::
cout
);
}
m_terminated
=
true
;
}
...
...
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