aboutsummaryrefslogtreecommitdiff
path: root/Docs/source/install/hpc/perlmutter.rst
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2022-10-05 16:59:32 -0700
committerGravatar GitHub <noreply@github.com> 2022-10-05 23:59:32 +0000
commit89ecf5ff46758401adb0122eaa5317877211a582 (patch)
tree621b4fd391c1828ca1a8074fdbecde44392c0620 /Docs/source/install/hpc/perlmutter.rst
parentb13b27ea90d8741185ff8f0bef5af59e33470fb2 (diff)
downloadWarpX-89ecf5ff46758401adb0122eaa5317877211a582.tar.gz
WarpX-89ecf5ff46758401adb0122eaa5317877211a582.tar.zst
WarpX-89ecf5ff46758401adb0122eaa5317877211a582.zip
Doc: BLAS++/LAPACK++ on GitHub (#3449)
* Doc: BLAS++/LAPACK++ on GitHub BLAS++ and LAPACK++ development has moved to GitHub :tada: Welcome! :) * Update bitbucket mention to GH * SLATE: Rename Missing Links Co-authored-by: Mark Gates <mgates3@icl.utk.edu>
Diffstat (limited to 'Docs/source/install/hpc/perlmutter.rst')
-rw-r--r--Docs/source/install/hpc/perlmutter.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/source/install/hpc/perlmutter.rst b/Docs/source/install/hpc/perlmutter.rst
index 43c047c62..6b0c67b6a 100644
--- a/Docs/source/install/hpc/perlmutter.rst
+++ b/Docs/source/install/hpc/perlmutter.rst
@@ -64,13 +64,13 @@ And since Perlmutter does not yet provide a module for them, install ADIOS2, BLA
cmake --build src/adios2-pm-build --target install -j 16
# BLAS++ (for PSATD+RZ)
- git clone https://bitbucket.org/icl/blaspp.git src/blaspp
+ git clone https://github.com/icl-utk-edu/blaspp.git src/blaspp
rm -rf src/blaspp-pm-build
CXX=$(which CC) cmake -S src/blaspp -B src/blaspp-pm-build -Duse_openmp=OFF -Dgpu_backend=cuda -DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX=$HOME/sw/perlmutter/blaspp-master
cmake --build src/blaspp-pm-build --target install --parallel 16
# LAPACK++ (for PSATD+RZ)
- git clone https://bitbucket.org/icl/lapackpp.git src/lapackpp
+ git clone https://github.com/icl-utk-edu/lapackpp.git src/lapackpp
rm -rf src/lapackpp-pm-build
CXX=$(which CC) CXXFLAGS="-DLAPACK_FORTRAN_ADD_" cmake -S src/lapackpp -B src/lapackpp-pm-build -DCMAKE_CXX_STANDARD=17 -Dbuild_tests=OFF -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON -DCMAKE_INSTALL_PREFIX=$HOME/sw/perlmutter/lapackpp-master
cmake --build src/lapackpp-pm-build --target install --parallel 16