-
-
Notifications
You must be signed in to change notification settings - Fork 11.1k
DOC: change all non-code instances of Numpy to NumPy #8021
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
773e3ca
2a55233
3f6672a
0780721
db0b231
0a9fb7b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
The strings in error messages were left untouched
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
# Version 9 (NumPy 1.8) Added interface for partition functions, | ||
# PyArray_NEW_ZEROED, commented out as the hash changed in | ||
# Numpy 1.9 due to annotation. | ||
# NumPy 1.9 due to annotation. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
#0x00000009 = 327bd114df09c2eb7a0bcc6901e2a3ed | ||
|
||
# Version 9 (NumPy 1.9) Added function annotations. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,7 +151,7 @@ | |
|
||
c_api_header = """ | ||
=========== | ||
Numpy C-API | ||
NumPy C-API | ||
=========== | ||
""" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -759,7 +759,7 @@ def isfortran(a): | |
|
||
This function is obsolete and, because of changes due to relaxed stride | ||
checking, its return value for the same array may differ for versions | ||
of Numpy >= 1.10 and previous versions. If you only want to check if an | ||
of NumPy >= 1.10 and previous versions. If you only want to check if an | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
array is Fortran contiguous use ``a.flags.f_contiguous`` instead. | ||
|
||
Parameters | ||
|
@@ -1158,22 +1158,22 @@ def alterdot(): | |
""" | ||
Change `dot`, `vdot`, and `inner` to use accelerated BLAS functions. | ||
|
||
Typically, as a user of Numpy, you do not explicitly call this | ||
function. If Numpy is built with an accelerated BLAS, this function is | ||
automatically called when Numpy is imported. | ||
Typically, as a user of NumPy, you do not explicitly call this | ||
function. If NumPy is built with an accelerated BLAS, this function is | ||
automatically called when NumPy is imported. | ||
|
||
When Numpy is built with an accelerated BLAS like ATLAS, these | ||
When NumPy is built with an accelerated BLAS like ATLAS, these | ||
functions are replaced to make use of the faster implementations. The | ||
faster implementations only affect float32, float64, complex64, and | ||
complex128 arrays. Furthermore, the BLAS API only includes | ||
matrix-matrix, matrix-vector, and vector-vector products. Products of | ||
arrays with larger dimensionalities use the built in functions and are | ||
not accelerated. | ||
|
||
.. note:: Deprecated in Numpy 1.10 | ||
.. note:: Deprecated in NumPy 1.10 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
The cblas functions have been integrated into the multarray | ||
module and alterdot now longer does anything. It will be | ||
removed in Numpy 1.11.0. | ||
removed in NumPy 1.11.0. | ||
|
||
See Also | ||
-------- | ||
|
@@ -1195,10 +1195,10 @@ def restoredot(): | |
an accelerated BLAS, or when being very careful about benchmarking | ||
linear algebra operations. | ||
|
||
.. note:: Deprecated in Numpy 1.10 | ||
.. note:: Deprecated in NumPy 1.10 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
The cblas functions have been integrated into the multarray | ||
module and restoredot now longer does anything. It will be | ||
removed in Numpy 1.11.0. | ||
removed in NumPy 1.11.0. | ||
|
||
See Also | ||
-------- | ||
|
@@ -1505,8 +1505,8 @@ def rollaxis(a, axis, start=0): | |
Returns | ||
------- | ||
res : ndarray | ||
For Numpy >= 1.10 a view of `a` is always returned. For earlier | ||
Numpy versions a view of `a` is returned only if the order of the | ||
For NumPy >= 1.10 a view of `a` is always returned. For earlier | ||
NumPy versions a view of `a` is returned only if the order of the | ||
axes is changed, otherwise the input array is returned. | ||
|
||
See Also | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.10.
->1.10.0