Skip to content

Commit f59dbc7

Browse files
committed
Setup scalapack
1 parent 5eab35b commit f59dbc7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

scripts/setup_scalapack.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
if [ ! -d "scalapack" ] ; then
4+
echo "Fetching and building ScaLapack..."
5+
git clone https://github.com/Reference-ScaLAPACK/scalapack.git
6+
pushd scalapack
7+
cmake -S. -Bbuild
8+
pushd build
9+
make
10+
popd
11+
popd
12+
fi

0 commit comments

Comments
 (0)