Gitlab Community Edition Instance
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bnachtw
dsmci
Commits
e9182e03
Commit
e9182e03
authored
Mar 14, 2022
by
Bjoern Nachtwey
Browse files
add "datatransfertime" to stats file
parent
ea301922
Changes
1
Hide whitespace changes
Inline
Side-by-side
perl/dsmci.pl
View file @
e9182e03
...
...
@@ -70,6 +70,7 @@
# 2021-11-29 0.6.10.1 changed "Bytes inspected" and "Bytes transferred" in prof file to "GBytes"
# 2022-01-24 0.6.10.2 create copy of profile file with Date for timeline anaylsis
# 2022-03-14 0.6.10.3 fixed output of profiling file
# 2022-03-14 0.6.11 add "datatransfertime" to stats file
#
# important notes
#
...
...
@@ -88,7 +89,7 @@ use strict;
use
warnings
;
use
File::Spec::
Functions
;
use
File::Find::
Rule
;
use
File::
Copy
;
use
File::
Copy
;
use
Time::
Piece
;
use
Fcntl
qw(:flock)
;
...
...
@@ -616,6 +617,7 @@ printf $STATFILE "End time : %20s\n", $endtimestring;
printf
$STATFILE
"
total processing time : %20s
\n
",
$total_elaped_time
;
printf
$STATFILE
"
total wallclock time : %20s
\n
",
$wallclocktime
;
printf
$STATFILE
"
effective speedup : %20.3lf using %d parallel threads
\n
",
$speedup
,
$maxthreads
;
printf
$STATFILE
"
datatransfertime : %20.3lf %%
\n
",
$datatransfertime
;
printf
$STATFILE
"
datatransfertime ratio: %20.3lf %%
\n
",
$dttratio
;
printf
$STATFILE
"
-------------------------------------------------
\n
";
printf
$STATFILE
"
Objects inspected : %20d
\n
",
$total_objects_inspected
;
...
...
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