summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #15069 from pv/blas-ilp64Charles Harris2019-12-152-17/+30
|\ | | | | ENH: add support for ILP64 OpenBLAS (without symbol suffix)
| * DOC: explain NPY_*_ILP64_ORDER default valuesPauli Virtanen2019-12-141-1/+1
| |
| * DOC: adjust ILP64 openblas release notePauli Virtanen2019-12-141-4/+3
| |
| * DOC: document 64-bit BLAS/LAPACK build-time variablesPauli Virtanen2019-12-141-13/+27
| |
* | ENH: f2py: add --f2cmap option for specifying the name of .f2py_f2cmapPauli Virtanen2019-12-141-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously, f2py loaded the type mappings from a file ``.f2py_f2cmap`` in current directory, at import time. Make the file name customizable by adding a ``--f2cmap`` command line option, and postpone loading the file to f2py.run_main(). Moreover, restore the default type mapping in f2py.run_main() before loading the customizations, so that multiple calls to f2py.run_main() do not interfere with each other. (For example, numpy.distutils calls f2py multiple times in the same process.)
* | DOC: f2py: copy documentation for .f2cmap file from old f2py FAQPauli Virtanen2019-12-141-0/+49
|/
* ENH: Add support to sort timedelta64 `NaT` to end of the array (gh-15068)Tirth Patel2019-12-111-0/+1
| | | | | | This work is a follow up of gh-12658. As requested in gh-15063, add NaT sort support for timedelta64 datatypes also. Fixes gh-15063
* Merge pull request #15052 from pv/blas64-fixupSebastian Berg2019-12-061-0/+5
|\ | | | | MAINT: follow-up cleanup for blas64 PR
| * DOC: add missing release note for ILP64 OpenBLASPauli Virtanen2019-12-041-0/+5
| |
* | Merge pull request #15046 from mattip/random-c-api3Ralf Gommers2019-12-043-19/+11
|\ \ | |/ |/| API, DOC: change names to multivariate_hypergeometric, improve docs
| * DOC: change to link (from review)mattip2019-12-052-2/+4
| |
| * API, DOC: change names to multivariate_hypergeometric, improve docsmattip2019-12-042-18/+8
| |
* | Merge pull request #15028 from jfbu/latex_fix_preambleMatti Picus2019-12-042-6/+21
|\ \ | |/ |/| [DOC] LaTeX: fix preamble (closes #15026)
| * Update LaTeX build instructionsjfbu2019-12-041-2/+4
| |
| * [DOC] LaTeX: Fix preamblejfbu2019-12-021-4/+17
| | | | | | | | | | | | | | | | | | | | | | Memo: latex_preamble got removed from Sphinx at 1.6.1, and old LaTeX package expdlist requires a fix else it breaks LaTeX if a description list is in a table cell, and it causes anyhow many LaTeX complaints about Underfull box (badness 10000). The fix for these complaints is copied over from https://github.com/scipy/scipy/commit/c881fdea7a7ef7c518b789 and it turns out it is also a fix for the crash in case a description list is in a table..
* | REL: Update master after 1.18.x branch.Charles Harris2019-12-031-0/+1
| | | | | | | | | | | | | | Apart from the usual modifications, this - Removes a release note snippet added after towncrier was run - Removes testing on Python 3.5 as it is dropped for 1.19.x.
* | Merge pull request #15007 from mattip/random-c-api2Ralf Gommers2019-12-032-64/+91
|\ \ | | | | | | DOC, API: improve the C-API/Cython documentation and interfaces for random
| * | DOC: fixes from reviewmattip2019-12-034-15/+7
| | |
| * | DOC: sphinx does not like breaking function declarations over linesmattip2019-11-291-17/+5
| | |
| * | API: rename functions in distributions.c,hmattip2019-11-291-10/+2
| | |
| * | DOC, TST: refactor CFFI test, add file names to documentationmattip2019-11-293-0/+6
| | |
| * | DOC: improve the C-API/Cython documentation for randommattip2019-11-292-50/+99
| |/
* | DOC: Create 1.18.0 release note.Charles Harris2019-12-021-8/+348
| |
* | Merge pull request #15021 from pv/blas64-testCharles Harris2019-12-021-0/+10
|\ \ | | | | | | TST: machinery for tests requiring large memory + lapack64 smoketest
| * | DOC: document the NPY_AVAILABLE_MEM test mechanismPauli Virtanen2019-12-011-0/+10
| |/
* | DOC: document NPY_USE_BLAS64_ environment variablePauli Virtanen2019-12-011-0/+19
|/
* MAINT: Change Congruent to Congruential in PCGCharles Harris2019-11-281-2/+2
| | | [skip ci]
* DOC: Fix abbreviation of PCG64Martin Thoma2019-11-281-1/+1
| | | | | | | See publication by O'Neill (reference 2): "The name for the family, PCG, stands for permuted congruential generator [...]"
* Merge pull request #14954 from mattip/test-extending-cffiCharles Harris2019-11-272-0/+25
|\ | | | | TST. API: test using distributions.h via cffi
| * DOC: document the CFFI examplemattip2019-11-222-0/+25
| |
* | Merge pull request #14948 from mattip/document-randomCharles Harris2019-11-272-41/+111
|\ \ | | | | | | DOC, API: add random.__init__.pxd and document random.* functions
| * | DOC: fixes from reviewmattip2019-11-212-7/+18
| | |
| * | DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcsmattip2019-11-212-41/+100
| |/
* | Fix typosBrian Wignall2019-11-255-5/+5
| |
* | Merge pull request #14718 from eric-wieser/disable-Q_-_m_castingMatti Picus2019-11-251-3/+3
|\ \ | | | | | | API: Forbid Q<->m safe casting
| * | API: Forbid Q<->m safe castingEric Wieser2019-10-161-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | That is, uint64 <-> timedelta64. Allowing this casting was weird, because Q<->q is forbidden, yet q and m are both int64. This fixes gh-12927
* | | Merge pull request #14732 from mattip/refguide-rstCharles Harris2019-11-234-17/+15
|\ \ \ | |_|/ |/| | TST: run refguide-check on rst files in doc/*
| * | TST: run refguide-check on rst files in doc/*mattip2019-10-174-17/+15
| |/
* | DOC, MAINT: fix documentation, remove __init__.pymattip2019-11-206-8/+8
| |
* | API: restructure and document numpy.random C-API (#14604)Matti Picus2019-11-1911-109/+247
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * API: restructure and document numpy.random C-API * DOC: fix bad reference * API: ship, document, and start to test numpy.random C-API examples * API, DOC, TST: fix tests, refactor documentation to include snippets * BUILD: move public headers to numpy/core/include/numpy/random * TST: ignore DeprecationWarnings in setuptools and numba * DOC: document the C-API as used from Cython
* | MAINT: Remove uses of scalar aliasesEric Wieser2019-11-134-4/+4
| | | | | | | | Relates to gh-6103
* | REL: Update master after 1.17.4 release.Charles Harris2019-11-102-0/+50
| | | | | | | | | | | | - Create 1.17.4-changelog.rst - Create 1.17.4-notes.rst - Update release.rst
* | BUILD, DOC: remove the std=c99 flag from docs, builds, add release notemattip2019-10-251-2/+1
| |
* | MAINT: doc: Refer to _rational_tests.c.src in the user-defined types section.Warren Weckesser2019-10-231-8/+7
| | | | | | | | | | Also removed a few sentence written in the first person that express opinions about the code.
* | Merge pull request #13794 from WarrenWeckesser/new-mvhgMatti Picus2019-10-201-0/+1
|\ \ | | | | | | ENH: random: Add the multivariate hypergeometric distribution.
| * | DOC: random: Add entry for multivariate_hypergeometric to the Generator docs.Warren Weckesser2019-10-181-0/+1
| | |
* | | Merge pull request #14699 from mattip/doc-warningsRalf Gommers2019-10-188-80/+94
|\ \ \ | | | | | | | | MAINT: reduce the number of doc build warnings
| * | | DOC: convert `None` to bare None or ``None``mattip2019-10-157-21/+21
| | | |
| * | | DOC: fix build failuremattip2019-10-151-3/+3
| | | |
| * | | DOC: add numpy.shape to indexmattip2019-10-151-0/+1
| | | |