diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-08-22 12:54:21 -0600 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-09-04 21:47:14 +0200 |
commit | d8a837714c241b729cdd823ae498adce242f3a75 (patch) | |
tree | d44d59c4ecc422bf9b44d03ff15303e86393c1f4 /doc | |
parent | 9c1d5538b5bf8682b82f0290615d3e9d7f97d746 (diff) | |
download | numpy-d8a837714c241b729cdd823ae498adce242f3a75.tar.gz |
DOC: Update docs to reflect deprecation of alterdot and restoredot.
Also move docstrings into the versions in numpy/core/numeric.py as
the functions are no longer in the defunct _dotblas module.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index 3f52bd5af..386edac45 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -11,6 +11,7 @@ Highlights Dropped Support =============== * The polytemplate.py file has been removed. +* The _dotblas module is no longer available. Future Changes @@ -33,6 +34,17 @@ Improvements Changes ======= +dotblas functionality moved to multiarray +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The cblas versions of dot, inner, and vdot have been integrated into +the multiarray module. In particular, vdot is now a multiarray function, +which it was not before. + Deprecations ============ + +alterdot, restoredot Deprecated +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The alterdot and restoredot functions no longer do anything, and are +deprecated. |