Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
73
Issues
73
List
Boards
Labels
Milestones
Merge Requests
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
f37ffc8d
Commit
f37ffc8d
authored
Apr 26, 2020
by
Philip Carns
Committed by
Shane Snyder
Apr 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
silence stdout from job-summary
- also remove --summary option - closes #264
parent
8dbe970a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
30 deletions
+7
-30
ChangeLog
ChangeLog
+4
-0
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
...an-util/darshan-job-summary/bin/darshan-job-summary.pl.in
+3
-30
No files found.
ChangeLog
View file @
f37ffc8d
...
...
@@ -2,6 +2,10 @@
Darshan Release Change Log
--------------------------
Darshan-3.2.0-pre2
=============
* silence stdout from darshan-job-summary.pl and remove --summary option
Darshan-3.2.0-pre1
=============
* corrected pkgconfig path for darshan-util when using DESTDIR (reported by
...
...
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
View file @
f37ffc8d
...
...
@@ -32,7 +32,6 @@ my $gnuplot = "gnuplot";
my
$orig_dir
=
getcwd
;
my
$output_file
=
"
summary.pdf
";
my
$verbose_flag
=
0
;
my
$summary_flag
=
0
;
my
$input_file
=
"";
my
%
posix_access_hash
=
();
my
%
mpiio_access_hash
=
();
...
...
@@ -977,25 +976,6 @@ close VAR_TABLE;
# calculate performance
##########################################################################
# what was the slowest time by any proc for unique file access?
my
$slowest_uniq_time
=
0
;
if
(
keys
%
hash_unique_file_time
>
0
)
{
$slowest_uniq_time
<
$_
and
$slowest_uniq_time
=
$_
for
values
%
hash_unique_file_time
;
}
print
("
Slowest unique file time:
$slowest_uniq_time
\n
");
print
("
Slowest shared file time:
$shared_file_time
\n
");
print
("
Total bytes read and written by app (may be incorrect):
$total_job_bytes
\n
");
my
$tmp_total_time
=
$slowest_uniq_time
+
$shared_file_time
;
print
("
Total absolute I/O time:
$tmp_total_time
\n
");
print
("
**NOTE: above shared and unique file times calculated using MPI-IO timers if MPI-IO interface used on a given file, POSIX timers otherwise.
\n
");
#Exit here if user ask only for a summary
if
(
$summary_flag
)
{
exit
(
0
);
}
# move to tmp_dir
chdir
$tmp_dir
;
...
...
@@ -1493,13 +1473,12 @@ sub process_file_record
sub
process_args
{
use
vars
qw( $opt_help $opt_output $opt_verbose
$opt_summary
)
;
use
vars
qw( $opt_help $opt_output $opt_verbose)
;
Getopt::Long::
Configure
("
no_ignore_case
",
"
bundling
");
GetOptions
(
"
help
",
"
output=s
",
"
verbose
",
"
summary
");
"
verbose
");
if
(
$opt_help
)
{
...
...
@@ -1517,11 +1496,6 @@ sub process_args
$verbose_flag
=
$opt_verbose
;
}
if
(
$opt_summary
)
{
$summary_flag
=
$opt_summary
;
}
# there should only be one remaining argument: the input file
if
(
$#ARGV
!=
0
)
{
...
...
@@ -1623,8 +1597,7 @@ Usage: $PROGRAM_NAME <options> input_file
--help Prints this help message
--output Specifies a file to write pdf output to
(defaults to ./summary.pdf)
--summary Print a very succinct I/O timing summary and exit
(defaults to ./<input_file>.pdf)
--verbose Prints and retains tmpdir used for LaTeX output
Purpose:
...
...
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