Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Gaudi
Gaudi
Commits
ff1846cb
Commit
ff1846cb
authored
10 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Patches
Plain Diff
Minor change in stats report at the end of loop in EventLoopMgr.
parent
af909a73
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!65
GAUDI-978: merge hive branch into master
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiCoreSvc/doc/release.notes
+3
-0
3 additions, 0 deletions
GaudiCoreSvc/doc/release.notes
GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp
+12
-10
12 additions, 10 deletions
GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp
with
15 additions
and
10 deletions
GaudiCoreSvc/doc/release.notes
+
3
−
0
View file @
ff1846cb
...
...
@@ -5,6 +5,9 @@
# Commit Id: $Format:%H$
################################################################################
! 2015-02-27 - Marco Clemencic
- Minor change in stats report at the end of loop in EventLoopMgr.
============================= GaudiCoreSvc v3r3 ==============================
! 2015-02-06 - Marco Clemencic
- Added methods to IToolSvc to get all the tool instances.
...
...
This diff is collapsed.
Click to expand it.
GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp
+
12
−
10
View file @
ff1846cb
...
...
@@ -289,9 +289,9 @@ StatusCode EventLoopMgr::finalize() {
StatusCode
EventLoopMgr
::
executeEvent
(
void
*
par
)
{
// DP Monitoring
// Fire BeginEvent "Incident"
m_incidentSvc
->
fireIncident
(
Incident
(
name
(),
IncidentType
::
BeginEvent
));
// An incident may schedule a stop, in which case is better to exit before the actual execution.
...
...
@@ -334,9 +334,9 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
typedef
std
::
chrono
::
high_resolution_clock
Clock
;
typedef
Clock
::
time_point
time_point
;
const
float
oneOver1204
=
1.
f
/
1024.
f
;
const
float
oneOver1024
=
1.
f
/
1024.
f
;
static
int
total_nevt
=
0
;
DataObject
*
pObject
=
0
;
StatusCode
sc
(
StatusCode
::
SUCCESS
,
true
);
...
...
@@ -350,10 +350,10 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
start_time
=
Clock
::
now
();
//always() << "Event Number = " << total_nevt
// << " WSS (MB) = " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1
2
04
// << " WSS (MB) = " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver10
2
4
// << " Time (s) = " << secsFromStart(start_time) << endmsg;
// Check if there is a scheduled stop issued by some algorithm/service
if
(
m_scheduledStop
)
{
m_scheduledStop
=
false
;
...
...
@@ -412,10 +412,12 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
}
time_point
end_time
=
Clock
::
now
();
info
()
<<
"---> Loop Finished (skipping 1st evt) - "
<<
" WSS "
<<
System
::
mappedMemory
(
System
::
MemoryUnit
::
kByte
)
*
oneOver1204
<<
" total time "
<<
std
::
chrono
::
duration_cast
<
std
::
chrono
::
nanoseconds
>
(
end_time
-
start_time
).
count
()
<<
endmsg
;
info
()
<<
"---> Loop Finished - "
<<
" WSS "
<<
System
::
mappedMemory
(
System
::
MemoryUnit
::
kByte
)
*
oneOver1024
<<
" | total time (skipping 1st evt) "
<<
std
::
chrono
::
duration_cast
<
std
::
chrono
::
nanoseconds
>
(
end_time
-
start_time
).
count
()
<<
" ns"
<<
endmsg
;
return
StatusCode
::
SUCCESS
;
}
...
...
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