We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59dbc7 commit 235a085Copy full SHA for 235a085
scripts/setup_scalapack.sh
@@ -6,7 +6,7 @@ if [ ! -d "scalapack" ] ; then
6
pushd scalapack
7
cmake -S. -Bbuild
8
pushd build
9
- make
+ make -j$(nproc)
10
popd
11
12
fi
scripts/setup_vmec2000.sh
@@ -0,0 +1,14 @@
1
+
2
+#!/bin/bash
3
4
+if [ ! -d "VMEC2000" ] ; then
5
+ echo "Fetching and building VMEC2000..."
+ git clone https://github.com/hiddenSymmetries/VMEC2000.git
+ pushd VMEC2000
+ cmake -S. -Bbuild -GNinja -DNETCDF_INC_PATH=/usr/include -DSCALAPACK_PRE
+FIX=$CODE/external/scalapack/build
+ pushd build
+ ninja
+ popd
13
14
+fi
0 commit comments