Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
62
Issues
62
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
fa863d34
Commit
fa863d34
authored
Feb 05, 2015
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support libmpifort in place of libfmpich
parent
f3954869
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
ChangeLog
ChangeLog
+2
-0
darshan-gen-fortran.pl.in
darshan-runtime/darshan-gen-fortran.pl.in
+11
-4
No files found.
ChangeLog
View file @
fa863d34
...
...
@@ -25,6 +25,8 @@ darshan-2.3.1-pre2
- label I/O vs. meta time more clearly
- include unique file meta time in agg_perf_by_slowest calculation
* added regression test script framework in darshan-test/regression/
* update darshan-gen-fortran.pl to support new Fortran library name in
MPICH 3.1.1
darshan-2.3.0
=============
...
...
darshan-runtime/darshan-gen-fortran.pl.in
View file @
fa863d34
...
...
@@ -275,13 +275,20 @@ print OUTPUT<<"EOF";
grep -E \\(PMPI_File_\\)\\|\\(PMPI_Init\\)\\|\\(PMPI_Finalize\\) \$tmpfile | grep -v -E \\(mpich.*\\.a\\) |grep \\(PMPI >& /dev/null
rc_pmpi=\$?
# normal or cnk libraries?
grep -E mpich\\.cnk \$tmpfile >& /dev/null
# find appropriate fortran library name for profiling
grep -E libmpifort \$tmpfile >& /dev/null
rc_cnk_check=\$?
if [ \$rc_cnk_check -eq 0 ] ; then
FMPICH=-l
fmpich.cnk
FMPICH=-l
mpifort
else
FMPICH=-lfmpich
grep -E mpich\\.cnk \$tmpfile >& /dev/null
rc_cnk_check=\$?
if [ \$rc_cnk_check -eq 0 ] ; then
FMPICH=-lfmpich.cnk
else
FMPICH=-lfmpich
fi
fi
rm \$tmpfile >& /dev/null
...
...
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