Skip to content

Commit

Permalink
build Laghos script
Browse files Browse the repository at this point in the history
  • Loading branch information
artv3 authored Jun 18, 2019
1 parent 0f80912 commit e09f2d5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions buildLaghos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
wget https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods/download/hypre-2.10.0b.tar.gz &&
tar -zxvf hypre-2.10.0b.tar.gz &&
ln -s hypre-2.10.0b hypre &&
cd hypre-2.10.0b/src/ &&
./configure --disable-fortran &&
make -j 3 &&
cd ../.. &&
wget http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD/metis-4.0.3.tar.gz &&
tar -zxvf metis-4.0.3.tar.gz &&
cd metis-4.0.3 &&
make -j 3 &&
cd .. &&
ln -s metis-4.0.3 metis-4.0 &&
git clone https://github.com/mfem/mfem.git mfem &&
cd mfem && make pcuda -j && cd ../ &&
git clone https://github.com/GLVis/glvis.git ./glvis &&
cd glvis/ &&
make -j && cd ../ &&
git clone https://github.com/CEED/Laghos.git &&
cd Laghos && make -j

0 comments on commit e09f2d5

Please sign in to comment.