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
a783978e
Commit
a783978e
authored
Oct 29, 2014
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix ytic labels for time interval graphs
fixes #148
parent
0ff84688
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
ChangeLog
ChangeLog
+2
-0
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
...an-util/darshan-job-summary/bin/darshan-job-summary.pl.in
+6
-1
No files found.
ChangeLog
View file @
a783978e
...
...
@@ -17,6 +17,8 @@ darshan-2.3.1-pre1
Chadalavada)
* add --start-group and --end-group notation to Darshan libraries for Cray PE
2.x environment to fix link-time corner cases (Yushu Yao)
* improve y axis labels on time interval graphs in darshan-job-summary.pl
(reported by Tomo Peterka)
darshan-2.3.0
=============
...
...
darshan-util/darshan-job-summary/bin/darshan-job-summary.pl.in
View file @
a783978e
...
...
@@ -787,7 +787,10 @@ system "$cp $PREFIX/share/*.gplt $tmp_dir/";
system
"
$cp
$PREFIX
/share/*.tex
$tmp_dir
/
";
# generate template for file access plot (we have to set range)
my
$ymax
=
$nprocs
+
1
;
my
$ymax
=
$nprocs
;
my
$yinc
=
int
(
$nprocs
/
8
);
if
(
$yinc
==
0
)
{
$yinc
=
1
;}
my
$ymaxtic
=
$nprocs
-
1
;
open
(
FILEACC
,
"
>
$tmp_dir
/file-access-read-eps.gplt
")
||
die
("
error opening output file:$!
\n
");
print
FILEACC
"
#!/usr/bin/gnuplot -persist
...
...
@@ -801,6 +804,7 @@ set format x \"%H:%M:%S\"
set yrange [-1:
$ymax
]
set title
\"
Timespan from first to last read access on independent files
\"
set xrange [
\"
0
\"
:
\"
$runtime
\"
]
set ytics 0,
$yinc
,
$ymaxtic
#set ytics -1,1
set lmargin 4
...
...
@@ -831,6 +835,7 @@ set title \"Timespan from first to last write access on independent files\"
set yrange [-1:
$ymax
]
set xrange [
\"
0
\"
:
\"
$runtime
\"
]
#set ytics -1,1
set ytics 0,
$yinc
,
$ymaxtic
set lmargin 4
# color blindness work around
...
...
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