Skip to content

Commit e09f2d5

Browse files
authored
build Laghos script
1 parent 0f80912 commit e09f2d5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

buildLaghos.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
wget https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods/download/hypre-2.10.0b.tar.gz &&
2+
tar -zxvf hypre-2.10.0b.tar.gz &&
3+
ln -s hypre-2.10.0b hypre &&
4+
cd hypre-2.10.0b/src/ &&
5+
./configure --disable-fortran &&
6+
make -j 3 &&
7+
cd ../.. &&
8+
wget http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD/metis-4.0.3.tar.gz &&
9+
tar -zxvf metis-4.0.3.tar.gz &&
10+
cd metis-4.0.3 &&
11+
make -j 3 &&
12+
cd .. &&
13+
ln -s metis-4.0.3 metis-4.0 &&
14+
git clone https://github.com/mfem/mfem.git mfem &&
15+
cd mfem && make pcuda -j && cd ../ &&
16+
git clone https://github.com/GLVis/glvis.git ./glvis &&
17+
cd glvis/ &&
18+
make -j && cd ../ &&
19+
git clone https://github.com/CEED/Laghos.git &&
20+
cd Laghos && make -j

0 commit comments

Comments
 (0)