Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-tests
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
sds-tests
Commits
e5f1aa5b
Commit
e5f1aa5b
authored
Jan 10, 2019
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hack around pmdk lib path problems
parent
a9f230f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
perf-regression/cooley/bake-regression.qsub
perf-regression/cooley/bake-regression.qsub
+8
-0
perf-regression/cooley/margo-regression-ofi-rxm.qsub
perf-regression/cooley/margo-regression-ofi-rxm.qsub
+8
-0
perf-regression/theta/margo-regression.qsub
perf-regression/theta/margo-regression.qsub
+7
-0
No files found.
perf-regression/cooley/bake-regression.qsub
View file @
e5f1aa5b
...
...
@@ -5,6 +5,10 @@
#COBALT -A radix-io
#COBALT -q ibleaf3-debug
get_pmdk_lib_path
()
{
module show
`
spack module tcl find pmem
`
|&grep LIBRARY_PATH |
awk
'{print $3}'
}
export
FI_FORK_UNSAFE
=
1
.
$SANDBOX
/spack/share/spack/setup-env.sh
...
...
@@ -16,6 +20,10 @@ module list
# TODO: why is this necessary? We should be able to find gcc libraries...
export
LD_LIBRARY_PATH
=
"/soft/compilers/gcc/7.1.0/lib64:
$LD_LIBRARY_PATH
"
# note, pmdk library not setting rpath correctly
LIB_PATH_HACK
=
$(
get_pmdk_lib_path
)
export
LD_LIBRARY_PATH
=
"
$LIB_PATH_HACK
:
$LD_LIBRARY_PATH
"
echo
"## Bake OFI/VERBS:"
rm
-f
/dev/shm/foo.dat
bake-mkpool
-s
60G /dev/shm/foo.dat
...
...
perf-regression/cooley/margo-regression-ofi-rxm.qsub
View file @
e5f1aa5b
...
...
@@ -5,6 +5,10 @@
#COBALT -A radix-io
#COBALT -q ibleaf3-debug
get_pmdk_lib_path
()
{
module show
`
spack module tcl find pmem
`
|&grep LIBRARY_PATH |
awk
'{print $3}'
}
export
FI_FORK_UNSAFE
=
1
.
$SANDBOX
/spack/share/spack/setup-env.sh
...
...
@@ -15,6 +19,10 @@ module list
# TODO: why is this necessary? We should be able to find gcc libraries...
export
LD_LIBRARY_PATH
=
"/soft/compilers/gcc/7.1.0/lib64:
$LD_LIBRARY_PATH
"
# note, pmdk library not setting rpath correctly
LIB_PATH_HACK
=
$(
get_pmdk_lib_path
)
export
LD_LIBRARY_PATH
=
"
$LIB_PATH_HACK
:
$LD_LIBRARY_PATH
"
# echo "## MPI (one way, double the latency for round trip):"
# mpirun -f $COBALT_NODEFILE -n 2 ./osu_latency
...
...
perf-regression/theta/margo-regression.qsub
View file @
e5f1aa5b
...
...
@@ -8,6 +8,10 @@
# XXX xalt module currently eating '-M' flag for mercury-runner...disabling for now
# module unload xalt
get_pmdk_lib_path
()
{
module show
`
spack module tcl find pmem
`
|&grep LIBRARY_PATH |
awk
'{print $3}'
}
get_mercury_lib_path
()
{
module show
`
spack module tcl find mercury
`
|&grep LIBRARY_PATH |
awk
'{print $3}'
}
...
...
@@ -25,6 +29,9 @@ module list
# test programs. Not sure why. This hack manually adds the correct path to LD_LIBRARY_PATH.
LIB_PATH_HACK
=
$(
get_mercury_lib_path
)
export
LD_LIBRARY_PATH
=
"
$LIB_PATH_HACK
:
$LD_LIBRARY_PATH
"
# ditto for pmdk apparently
LIB_PATH_HACK
=
$(
get_pmdk_lib_path
)
export
LD_LIBRARY_PATH
=
"
$LIB_PATH_HACK
:
$LD_LIBRARY_PATH
"
echo
LD_LIBRARY_PATH:
$LD_LIBRARY_PATH
echo
"## Margo OFI/GNI:"
...
...
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