diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-09-07 07:17:54 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-09-07 07:17:54 -0600 |
commit | ab170ae6822f4208498b3ab561eba1f8f8a2cfb9 (patch) | |
tree | 3ef3034e5e62bd75190b7ff53053ea27e67f9de6 /doc | |
parent | a32a9327b433ec47051b16a1a87190f640e8475d (diff) | |
parent | 0cf6dcf245ccd68b82f82e6b5f00f5a97a874651 (diff) | |
download | numpy-ab170ae6822f4208498b3ab561eba1f8f8a2cfb9.tar.gz |
Merge pull request #5047 from juliantaylor/move-dotblas-to-multiarray
Move dotblas to multiarray
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 b26e02363..5990c9107 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 @@ -39,6 +40,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. |