Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
b0f1de03
Commit
b0f1de03
authored
Jul 27, 2015
by
COULAUD Olivier
Browse files
EZtrace improvements
parent
91d5c7d6
Changes
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
b0f1de03
...
...
@@ -657,7 +657,7 @@ if (MORSE_DISTRIB_DIR OR EXISTS "${CMAKE_SOURCE_DIR}/CMakeModules/morse/")
link_directories
(
${
EZTrace_LIBRARY_DIRS
}
)
link_libraries
(
${
EZTrace_LIBRARIES
}
)
IF
(
SCALFMM_USE_MPI
)
link_libraries
(
-leztrace-mpi
)
link_libraries
(
-leztrace-
autostart-
mpi
)
ENDIF
(
SCALFMM_USE_MPI
)
include_directories
(
${
EZTrace_INCLUDE_DIRS
}
)
MESSAGE
(
STATUS
"EZTRACE:
${
EZTrace_INCLUDE_DIRS
}
${
EZTrace_LIBRARY_DIRS
}
${
EZTrace_LIBRARIES
}
"
)
...
...
Examples/ChebyshevInterpolationMPIFMM.cpp
View file @
b0f1de03
...
...
@@ -46,7 +46,9 @@
#include "Utils/FParameters.hpp"
#include "Utils/FParameterNames.hpp"
#ifdef SCALFMM_USE_EZTRACE
#include "eztrace.h"
#endif
/// \file
//!
//! \brief This program runs the MPI FMM with Chebyshev interpolation of 1/r kernel
...
...
@@ -87,7 +89,13 @@ int main(int argc, char* argv[])
///////// VAR INIT /////////////////////////////////////////////////
// Initialize values for MPI
#ifdef SCALFMM_USE_EZTRACE
eztrace_start
();
#endif
FMpi
app
(
argc
,
argv
);
#ifdef SCALFMM_USE_EZTRACE
eztrace_pause
();
#endif
//
// Initialize timer
FTic
time
;
...
...
Src/Core/FFmmAlgorithmThreadProc.hpp
View file @
b0f1de03
...
...
@@ -191,7 +191,7 @@ protected:
void
executeCore
(
const
unsigned
operationsToProceed
)
override
{
// Count leaf
#ifdef SCALFMM_TRACE_ALGO
eztrace_
start
();
eztrace_
resume
();
#endif
this
->
numberOfLeafs
=
0
;
{
...
...
@@ -264,17 +264,16 @@ protected:
FMpi
::
MpiAssert
(
MPI_Allgather
(
myIntervals
.
get
(),
int
(
sizeof
(
Interval
))
*
OctreeHeight
,
MPI_BYTE
,
workingIntervalsPerLevel
,
int
(
sizeof
(
Interval
))
*
OctreeHeight
,
MPI_BYTE
,
comm
.
getComm
()),
__LINE__
);
}
#ifdef SCALFMM_TRACE_ALGO
Timers
[
P2MTimer
].
tic
();
eztrace_enter_event
(
"P2M"
,
EZTRACE_YELLOW
);
#endif
Timers
[
P2MTimer
].
tic
();
if
(
operationsToProceed
&
FFmmP2M
)
bottomPass
();
Timers
[
P2MTimer
].
tac
();
#ifdef SSCALFMM_TRACE_ALGO
eztrace_leave_event
();
eztrace_enter_event
(
"M2M"
,
EZTRACE_PINK
);
eztrace_leave_event
();
eztrace_enter_event
(
"M2M"
,
EZTRACE_PINK
);
#endif
Timers
[
M2MTimer
].
tic
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment