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
72
Issues
72
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
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
4ba7a24d
Commit
4ba7a24d
authored
Jul 07, 2016
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean out some refs to deprecated POSIX counters
parent
4abb4a3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
...an-util/darshan-job-summary/bin/darshan-job-summary.pl.in
+5
-7
No files found.
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
View file @
4ba7a24d
...
...
@@ -555,9 +555,9 @@ if (defined $summary{MPIIO_INDEP_OPENS})
# sequential and consecutive access patterns
open
(
PATTERN
,
"
>
$tmp_dir
/pattern.dat
")
||
die
("
error opening output file: $!
\n
");
print
PATTERN
"
# op total sequential consecutive
\n
";
print
PATTERN
"
Read,
",
$summary
{
POSIX_READS
}
+
$summary
{
POSIX_FREADS
}
,
"
,
",
print
PATTERN
"
Read,
",
$summary
{
POSIX_READS
},
"
,
",
$summary
{
POSIX_SEQ_READS
},
"
,
",
$summary
{
POSIX_CONSEC_READS
},
"
\n
";
print
PATTERN
"
Write,
",
$summary
{
POSIX_WRITES
}
+
$summary
{
POSIX_FWRITES
}
,
"
,
",
print
PATTERN
"
Write,
",
$summary
{
POSIX_WRITES
},
"
,
",
$summary
{
POSIX_SEQ_WRITES
},
"
,
",
$summary
{
POSIX_CONSEC_WRITES
},
"
\n
";
close
PATTERN
;
...
...
@@ -1133,7 +1133,7 @@ sub process_file_record
}
if
(
$file_record
{'
POSIX_OPENS
'}
==
0
&&
$file_record
{'
POSIX_FOPENS
'}
==
0
&&
(
!
defined
$file_record
{'
STDIO_OPENS
'})
&&
(
!
defined
$file_record
{'
MPIIO_INDEP_OPENS
'}
||
(
$file_record
{'
MPIIO_INDEP_OPENS
'}
==
0
&&
$file_record
{'
MPIIO_COLL_OPENS
'}
==
0
)))
{
...
...
@@ -1196,14 +1196,12 @@ sub process_file_record
else
{
# posix file
if
(
$file_record
{'
POSIX_READS
'}
>
0
||
$file_record
{'
POSIX_FREADS
'}
>
0
)
if
(
$file_record
{'
POSIX_READS
'}
>
0
)
{
# data was read from the file
$hash_files
{
$hash
}{'
was_read
'}
=
1
;
}
if
(
$file_record
{'
POSIX_WRITES
'}
>
0
||
$file_record
{'
POSIX_FWRITES
'}
>
0
)
if
(
$file_record
{'
POSIX_WRITES
'}
>
0
)
{
# data was written to the file
$hash_files
{
$hash
}{'
was_written
'}
=
1
;
...
...
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