- Timestamp:
- Oct 31, 2018, 5:12:21 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:
- dc3f68d
- Parents:
- a4a00a5
- Location:
- doc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/py_datatypes.rst
ra4a00a5 r6d4802f 18 18 19 19 If `aubio` was built specifically with the option `--enable-double`, this 20 string will be defined to `"float64"`. See :ref:` doubleprecision` in21 :ref:` requirements` for more details on building aubio in double20 string will be defined to `"float64"`. See :ref:`py-doubleprecision` in 21 :ref:`python-install` for more details on building aubio in double 22 22 precision mode. 23 23 -
doc/py_utils.rst
ra4a00a5 r6d4802f 5 5 --------- 6 6 7 This section documents various helper sfunctions included in the aubio library.7 This section documents various helper functions included in the aubio library. 8 8 9 9 Note name conversion -
doc/python_module.rst
ra4a00a5 r6d4802f 26 26 $ sudo ./setup.py install 27 27 28 29 .. _py-doubleprecision: 30 31 Double precision 32 ---------------- 33 34 This module can be compiled in double-precision mode, in which case the 35 default type for floating-point samples will be 64-bit. The default is 36 single precision mode (32-bit, recommended). 37 38 To build the aubio module with double precision, use the option 39 `--enable-double` of the `build_ext` subcommand: 40 41 .. code:: bash 42 43 $ ./setup.py clean 44 $ ./setup.py build_ext --enable-double 45 $ pip install -v . 46 47 **Note**: If linking against `libaubio`, make sure the library was also 48 compiled in :ref:`doubleprecision` mode. 49 50 28 51 Checking your installation 29 52 -------------------------- -
doc/requirements.rst
ra4a00a5 r6d4802f 298 298 uninstall clean distclean dist distcheck 299 299 300 .. _doubleprecision: 301 300 302 Double precision 301 303 ................ … … 303 305 To compile aubio in double precision mode, configure with ``--enable-double``. 304 306 305 To compile aubio in single precision mode, use ``--disable-double`` (default). 307 To compile aubio in single precision mode, use ``--disable-double`` (default, 308 recommended). 306 309 307 310 Disabling the tests
Note: See TracChangeset
for help on using the changeset viewer.