Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_pdata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_pdata
Commits
ccac986f
Commit
ccac986f
authored
4 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing installation of mpich
parent
a4472145
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2827
passed
4 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install_MPI_mpich.sh
+25
-2
25 additions, 2 deletions
install_MPI_mpich.sh
with
25 additions
and
2 deletions
install_MPI_mpich.sh
+
25
−
2
View file @
ccac986f
...
...
@@ -3,9 +3,32 @@
# check if the directory $1/MPI exist
if
[
-d
"
$1
/MPI"
]
;
then
echo
"MPI already installed"
exit
0
version
=
$(
cat
$1
/MPI/version
)
if
[
x
"
$version
"
!=
x
"9"
]
;
then
echo
-e
"
\0
33[1;34;5m --------------------------------------------------------------------------------------
\0
33[0m"
echo
-e
"
\0
33[1;34;5m MPICH has been updated to version 3.3.0, the component will be updated automatically
\0
33[0m"
echo
-e
"
\0
33[1;34;5m --------------------------------------------------------------------------------------
\0
33[0m"
sleep
5
rm
-rf
$1
/MPI/include
rm
-rf
$1
/MPI/lib
rm
-rf
$1
/MPI/bin
rm
-rf
$1
/MPI/etc
rm
-rf
$1
/MPI/share
rm
-rf
$1
/MPI
rm
-rf
$1
/HDF5
rm
-rf
$1
/ZLIB
rm
-rf
$1
/PARMETIS
rm
-rf
$1
/PETSC
rm
-rf
$1
/TRILINOS
rm
-rf
$1
/HYPRE
rm
-rf
$1
/MUMPS
rm
-rf
$1
/SUPERLU_DIST
else
echo
"MPI already installed"
exit
0
fi
fi
rm
-rf
mpich-3.3
rm
mpich-3.3.tar.gz
wget http://ppmcore.mpi-cbg.de/upload/mpich-3.3.tar.gz
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment