Skip to content

Commit

Permalink
Fix option in compilation instructions (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobandersen committed Dec 31, 2023
1 parent eeaf515 commit 35736d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ For this example we additonally choose to change the linear algebra backend to O
.. code-block::
export FC=gfortran CC=gcc
meson setup build --buildtype=release -Dla_backend=openblas
meson setup build --buildtype=release -Dlapack=openblas
The build system will check if the OpenBLAS library provides LAPACK features as well, if this is not the case it will additionally search for LAPACK.
If you are compiling ``xtb`` on Darwin platforms, ensure that GCC is the actual GCC and not clang.
Expand Down Expand Up @@ -189,7 +189,7 @@ With the NVHPC compilers available, configure a build with
.. code-block:: none
export FC=nvfortran CC=nvc
meson setup build_gpu --prefix=$HOME/.local -Dla_backend=netlib -Dgpu=true -Dcusolver=true
meson setup build_gpu --prefix=$HOME/.local -Dlapack=netlib -Dgpu=true -Dcusolver=true
You can select the correct compute capability of your device with ``-Dgpu_arch=70``.

Expand Down

0 comments on commit 35736d0

Please sign in to comment.