- Timestamp:
- Sep 21, 2018, 6:00:42 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- ffb66f0
- Parents:
- b45af44
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/requirements.rst
rb45af44 r46b065d1 98 98 then fail if the required library is not found. To disable this option, 99 99 configure with ``--disable-fftw3`` 100 101 blas 102 .... 103 104 On macOs/iOS, `blas 105 <https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms>`_ are made 106 available through the Accelerate framework. 107 108 On Linux, they can be enabled with ``--enable-blas``. On Debian (etch), 109 `atlas`_, `openblas`_, and `libblas`_ have been successfully tested. 110 111 When enabled, ``waf`` will check for the current blas configuration by running 112 ``pkg-config --libs blas``. Depending of the library path returned by 113 ``pkg-config``, different headers will be searched for. 114 115 .. note:: 116 117 On Debian systems, `multiple versions of BLAS and LAPACK 118 <https://wiki.debian.org/DebianScience/LinearAlgebraLibraries>`_ can be 119 installed. To configure which libblas is being used: 120 121 .. code-block:: console 122 123 $ sudo update-alternatives --config libblas.so 124 125 .. 126 Expected pkg-config output for each alternative: 127 /usr/lib/atlas-base/atlas/libblas.so 128 -L/usr/lib/atlas-base/atlas -lblas 129 /usr/lib/openblas-base/libblas.so 130 -L/usr/lib/openblas-base -lblas 131 /usr/lib/libblas/libblas.so 132 -lblas 133 134 atlas 135 ..... 136 137 `ATLAS BLAS APIs <http://math-atlas.sourceforge.net/>`_ will be used the path 138 returned by ``pkg-config --libs blas`` contains ``atlas``. 139 140 .. 141 ``<atlas/cblas.h>`` will be included. 142 143 Example: 144 145 .. code-block:: console 146 147 $ pkg-config --libs blas 148 -L/usr/lib/atlas-base/atlas -lblas 149 $ ./waf configure --enable-atlas 150 [...] 151 Checking for 'blas' : yes 152 Checking for header atlas/cblas.h : yes 153 154 openblas 155 ........ 156 157 `OpenBlas libraries <https://www.openblas.net/>`_ will be used when the output 158 of ``pkg-config --libs blas`` contains 'openblas', 159 160 .. 161 ``<openblas/cblas.h>`` will be included. 162 163 Example: 164 165 .. code-block:: console 166 167 $ pkg-config --libs blas 168 -L/usr/lib/openblas-base -lblas 169 $ ./waf configure --enable-atlas 170 [...] 171 Checking for 'blas' : yes 172 Checking for header openblas/cblas.h : yes 173 174 libblas 175 ....... 176 177 `Netlib's libblas (LAPACK) <https://www.netlib.org/lapack/>`_ will be used if 178 no specific library path is specified by ``pkg-config`` 179 180 .. 181 ``<cblas.h>`` will be included. 182 183 Example: 184 185 .. code-block:: console 186 187 $ pkg-config --libs blas 188 -lblas 189 $ ./waf configure --enable-atlas 190 [...] 191 Checking for 'blas' : yes 192 Checking for header cblas.h : yes 193 100 194 101 195 Platform notes
Note: See TracChangeset
for help on using the changeset viewer.