Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
container_recepies
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
MLC
container_recepies
Commits
9806b7ff
Commit
9806b7ff
authored
Mar 22, 2018
by
Andreas Gocht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use io branch
parent
7471afda
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
6 deletions
+29
-6
ubuntu-openmpi.def
ubuntu-openmpi.def
+29
-6
No files found.
ubuntu-openmpi.def
View file @
9806b7ff
...
...
@@ -20,6 +20,7 @@ Namespace: amd64
cudnn-9.0-linux-x64-v7.1.tgz /tmp/
%post
UPDATE_SCOREP=true
apt-get update
apt-get dist-upgrade -y
...
...
@@ -90,7 +91,7 @@ Namespace: amd64
apt-get -y install zlib1g-dev autotools-dev automake autoconf gcc-5-plugin-dev flex bison texinfo
cd /apps
if [ ! -d scorep
]; then
if [ ! -d scorep
-o $UPDATE_SCOREP ]; then
#get a recent Score-P from trunk (the only one that have the gcc-7 patch)
...
...
@@ -105,7 +106,23 @@ Namespace: amd64
libtool --version
cd /apps
svn co --username scorep --password foo42bar --non-interactive https://silc.zih.tu-dresden.de/svn/silc-root/trunk scorep
if [ $UPDATE_SCOREP ]; then
rm -rf scorep
rm -rf /usr/lib/libscorep*
rm -rf /usr/lib/libotf2*
rm -rf /usr/lib/libcube*
rm -rf /usr/include/scorep/
rm -rf /usr/include/otf2/
rm -rf /usr/include/cubew/
rm -rf /usr/include/cubelib/
rm -rf /usr/include/opari2/
rm -rf /usr/bin/scorep*
rm -rf /usr/bin/opari2*
rm -rf /usr/bin/cube*
rm -rf /usr/bin/otf2*
fi
svn co --username scorep --password foo42bar --non-interactive https://silc.zih.tu-dresden.de/svn/silc-root/branches/TRY_TUD_io_recording scorep
cd scorep
./bootstrap
mkdir build
...
...
@@ -123,7 +140,8 @@ Namespace: amd64
'--enable-debug' \
'CFLAGS=-g' \
'CXXFLAGS=-g'
make -j 4 # just for my notebook, you might want to use a higher number
#make -j 4 # just for my notebook, you might want to use a higher number
make
make install
fi
...
...
@@ -137,9 +155,14 @@ Namespace: amd64
cd /apps
if [ ! -d scorep_binding_python ]; then
git clone https://github.com/score-p/scorep_binding_python
cd scorep_binding_python
if [ ! -d scorep_binding_python -o $UPDATE_SCOREP]; then
if [ ! -d scorep_binding_python ]; then
git clone https://github.com/score-p/scorep_binding_python
cd scorep_binding_python
else
cd scorep_binding_python
git pull
fi
python setup.py install
python3 setup.py install
fi
...
...
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