summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5161 from juliantaylor/parallel-distutilsJulian Taylor2014-11-021-0/+9
|\ | | | | ENH: support parallel compilation of extensions
| * ENH: support parallel compilation of extensionsJulian Taylor2014-10-281-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow extensions using numpy.distutils to compile in parallel. By passing `--jobs=n` or `-j n` to `setup.py build` the compilation of extensions is now performed in `n` parallel processes. Additionally the environment variable NPY_NUM_BUILD_JOBS is used as the default value, if its unset the default is serial compilation. The parallelization is limited to within the files of an extension, so only numpy multiarraymodule really profits but its still a nice improvement when you have 2-4 cores. Unfortunately Cython will not profit at all as it tends to build one module per file.
* | DEP: deprecate pkgloadalex2014-10-281-2/+6
|/
* Merge pull request #5077 from jaimefrio/gufuncs_core_dim_no_broadcastCharles Harris2014-10-273-24/+66
|\ | | | | WIP: gufunc core dimensions should not broadcast
| * DOC: Stricter checks for gufunc signaturesjaimefrio2014-10-203-24/+66
| | | | | | | | | | | | Documented the the new behavior in c-api.generalized-ufuncs.rst. Added PyUFunc_FromFuncAndDataAndSignature to c-api.ufunc.rst.
* | ENH: added parameter to use periodic x-coordinatessaullogiovani2014-10-171-0/+8
| |
* | DEP: Deprecate SafeEval class.Charles Harris2014-10-151-0/+7
| | | | | | | | The class is no longer used in numpy and was never exported.
* | DOC: document improvements to `np.digitize`jaimefrio2014-09-251-0/+7
| |
* | Merge pull request #5120 from larsmans/install-docsCharles Harris2014-09-255-25/+18
|\ \ | | | | | | DOC: update installation docs
| * | DOC/MAINT: Python 2.6 or 3.2 requiredLars Buitinck2014-09-255-25/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | Installation docs still stated Python 2.4 is supported, while not mentioning 3.x at all. Also corrected the statement that distutils is in python-dev on Debian, while it's actually in the main package. Several parts of the dev docs and some comments also referenced now-irrelevant 2.5 bugs/limitations.
* | | Merge pull request #5116 from jaimefrio/poly-overflowCharles Harris2014-09-251-0/+7
|\ \ \ | | | | | | | | ENH: Cast non-object arrays to float in np.poly
| * | | ENH: Cast non-object arrays to float in np.polyjaimefrio2014-09-251-0/+7
| |/ / | | | | | | | | | | | | | | | Closes #5096. Casts integer arrays to np.double, to prevent integer overflow. Object arrays are left unchanged, to allow use of arbitrary precision objects.
* | | DOC: document NPY_BEGIN_THREADS_THRESHOLDEDjaimefrio2014-09-251-0/+6
|/ /
* | DOC: Update PyArray_SearchSorted docs in c-api.array.rstjaimefrio2014-09-241-11/+20
| |
* | Merge pull request #5102 from dpinte/fix/epd_canopyJulian Taylor2014-09-231-3/+4
|\ \ | |/ |/| | | replacing old reference from EPD to Canopy
| * DOC: replacing old reference from EPD to CanopyDidrik Pinte2014-09-231-3/+4
| |
* | Merge pull request #5076 from kanhua/kh_fixJulian Taylor2014-09-191-0/+6
|\ \ | |/ | | | | DOC: Minor fix on c-info.python-as-glue.rst
| * DOC: add section on compiling pyf fileskanhua2014-09-191-0/+6
| | | | | | | | | | Add section to remind the readers to recomplile add.pyf and add.f95 files before checking the add module in python
* | MAINT: Remove testcalcs.py file.Charles Harris2014-09-151-0/+1
| | | | | | | | | | | | The testcalcs.py file is nowhere imported or installed, nor did anyone reply when it was proposed on the mailing list to remove it. It looks to be a leftover from the original work on datetime.
* | Merge pull request #5062 from charris/update-numpy_ufunc-docJulian Taylor2014-09-131-1/+1
|\ \ | | | | | | DOC: Correct versionadded for __numpy_ufunc__ documentation.
| * | DOC: Correct versionadded for __numpy_ufunc__ documentation.Charles Harris2014-09-101-1/+1
| |/ | | | | | | Make it 1.10.
* | Merge pull request #5055 from juliantaylor/note-syncRalf Gommers2014-09-073-9/+21
|\ \ | | | | | | DOC: sync release notes with 1.9 branch
| * | DOC: sync release notes with 1.9 branchJulian Taylor2014-09-073-9/+21
| | | | | | | | | | | | [ci skip]
* | | Merge pull request #5047 from juliantaylor/move-dotblas-to-multiarrayCharles Harris2014-09-071-0/+12
|\ \ \ | | | | | | | | Move dotblas to multiarray
| * | | DOC: Update docs to reflect deprecation of alterdot and restoredot.Charles Harris2014-09-041-0/+12
| |/ / | | | | | | | | | | | | Also move docstrings into the versions in numpy/core/numeric.py as the functions are no longer in the defunct _dotblas module.
* | | ENH: add cube root function np.cbrt for real floatsJulian Taylor2014-09-071-0/+6
|/ / | | | | | | wraps the C99 cube root function cbrt.
* | escape the italics bold and monospace examplesendolith2014-08-261-1/+2
| | | | | | since this is meant to be read in rendered form, and there are examples of these scattered through the text otherwise
* | Fixed two typos in the c-api user guide.cel2014-08-131-2/+2
| |
* | DOC: remove 'count_reduce_items' from the 'Counting' section.Warren Weckesser2014-08-111-1/+0
| |
* | Merge pull request #4917 from juliantaylor/zeros_like_stringCharles Harris2014-07-291-0/+5
|\ \ | |/ | | BUG: fix string type inconsistency between zeros and zeros_like
| * BUG: fix string type inconsistency between zeros and zeros_likeJulian Taylor2014-07-291-0/+5
| | | | | | | | | | np.zeros for strings returns empty strings while np.zeros_like of a string array creates strings containing an string 0.
* | Merge pull request #4905 from juliantaylor/doc-updateCharles Harris2014-07-276-18/+19
|\ \ | | | | | | documentation updates
| * | DOC: add a note on the potential string dtype changeJulian Taylor2014-07-271-0/+2
| | |
| * | DOC: fix PEP links in HOWTO_DOCUMENT.rst.txtTalha Oz2014-07-271-6/+6
| | |
| * | DOC: NPY_ITEM_LISTPICKLE -> NPY_LIST_PICKLEKirill Smelkov2014-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | There is no NPY_ITEM_LISTPICKLE - it was NPY_LIST_PICKLE from the beginning - from c3551579 (Expand usage of hasobject to be a flag-like entity keeping track of how the data-type should be used.) The documentation in the same rst file even uses the correct identifier later, so it was just a typo/thinko.
| * | DOC: remove obsolete NA documentation pageJulian Taylor2014-07-271-11/+0
| | |
| * | DOC: add some missing ma functions to referenceJulian Taylor2014-07-271-0/+3
| | | | | | | | | | | | closes gh-4898
| * | DOC: add ascontiguousarray and asarray_chkfinite to appropriate sectionJulian Taylor2014-07-271-0/+2
| | | | | | | | | | | | | | | added to "Changing kind of array" with the other as* functions Closes gh-4890
| * | DOC: document non-integer reduce axis argument deprecationJulian Taylor2014-07-271-0/+5
| |/
* | DOC: fix a typo and use TeX for plot labelsendolith2014-07-151-3/+3
| |
* | Merge pull request #4671 from charris/prepare-1.10-develCharles Harris2014-07-063-9/+47
|\ \ | | | | | | MAINT: start 1.10-devel.
| * | MAINT: Make NPY_RELAXED_STRIDE_CHECKING true by default.Charles Harris2014-05-061-0/+1
| | |
| * | MAINT: Remove the polytemplate.py file.Charles Harris2014-05-061-0/+1
| | |
| * | MAINT: Change default inplace, ufunc(...,out=x) casting to same_kind.Charles Harris2014-05-061-9/+8
| | | | | | | | | | | | | | | | | | There has been a warning of this change since numpy 1.7. numpy 1.10 is a good time to do it. The nanvar function needed a fix after the change, and the tests and documentation are updated.
| * | MAINT: start 1.10-devel.Charles Harris2014-05-062-0/+37
| | | | | | | | | | | | | | | | | | * Create 1.10.0-notes. * Add 1.10.-notes to the generated documentation. * Update version number in setup.py
* | | Merge pull request #4697 from charris/update-1.9.0-notesCharles Harris2014-07-061-0/+6
|\ \ \ | | | | | | | | DOC: Update 1.9.0-notes to mention pairwise summation.
| * | | DOC: Update 1.9.0-notes to mention pairwise summation.Charles Harris2014-06-291-0/+6
| | | |
* | | | Merge pull request #4351 from njsmith/matmul-pepCharles Harris2014-07-061-0/+1380
|\ \ \ \ | | | | | | | | | | A new PEP for infix matrix multiplication
| * | | | add associativity/precedence rationale (+ a few misc tweaks)Nathaniel J. Smith2014-04-061-38/+99
| | | | |
| * | | | fix PEP headers to placate PEP-0000 builder, mention Julia in notation ↵Nathaniel J. Smith2014-03-181-8/+8
| | | | | | | | | | | | | | | | | | | | section, and remove stray ^^ operator left over from the @@ purge