8000 Move dotblas to multiarray by charris · Pull Request #4969 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

Move dotblas to multiarray #4969

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

Closed
wants to merge 27 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2f6da63
ENH: optimize STRING_compare by using memcmp
juliantaylor Mar 31, 2014
f615c6c
ENH: Add 'HAVE_CBLAS' macro for build purposes.
charris Aug 11, 2014
ace49c2
ENH: When cblas is available use it in descr->f->dot.
charris Aug 14, 2014
efd023f
MAINT, STY: Remove use of alterdot, restoredot in _dotblas.c.
charris Aug 15, 2014
4e6066b
ENH: Move dotblas_matrixproduct down into multiarray.
charris Aug 16, 2014
028d2de
MAINT: Update waf to 1.7.16
charris Aug 17, 2014
52b8ab3
ENH: Move dotblas_innerproduct down into multiarray.
charris Aug 17, 2014
df0b65c
MAINT: Refactor ndarray.dot method to call PyArray_MatrixProduct2.
charris Aug 17, 2014
63cc74e
ENH: Move vdot to multiarray.
charris Aug 20, 2014
fad1377
DOC: Update docs to reflect deprecation of alterdot and restoredot.
charris Aug 22, 2014
f6ab313
TST: Add vdot tests, move tests from test_blasdot to test_multiarray.
charris Aug 22, 2014
d8af083
ENH: np.dot: better "matrices not aligned" message
larsmans Aug 23, 2014
a746e3a
BUG: Capitalize environmental variables in numpy/core/__init__.py.
charris Aug 23, 2014
d07c4c7
ENH: include shapes in "matrices not aligned" msg
larsmans Aug 23, 2014
ce32d9e
BLD: check for CBLAS header in "unoptimized" blas
juliantaylor Aug 24, 2014
91f89e4
Merge pull request #3 from juliantaylor/system-blas
charris Aug 24, 2014
ec5ef40
Merge branch 'dot-errmsg' into pr/4969
larsmans Aug 24, 2014
cfd462e
Merge pull request #2 from larsmans/dot-errmsg-no-dotblas
charris Aug 25, 2014
a3c70cc
STY: Add spaces around '-'.
charris Aug 25, 2014
affeaf5
TST: Silence some warning that turns up on OpenBSD.
charris Aug 29, 2014
4097ec3
BUG: fix percentage reporting when testing.assert_allclose fails.
pp-mo Aug 31, 2014
ea32c90
Use more portable test methods.
pp-mo Sep 1, 2014
138b3bf
Merge pull request #5031 from charris/speedup-old-polynomial-functions
seberg Sep 2, 2014
4a501a0
Merge pull request #5025 from pp-mo/assert_allclose_percent
juliantaylor Sep 2, 2014
588bcc4
Merge pull request #5020 from charris/disable-some-test-warnings
juliantaylor Sep 2, 2014
0f0575c
Merge pull request #4572 from juliantaylor/string-cmp
juliantaylor Sep 2, 2014
889821a
Merge branch 'old-move-dotblas' into move-dotblas-to-multiarray
charris Sep 2, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions numpy/core/tests/test_umath.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,10 @@ def test_log1p(self):
assert_almost_equal(ncu.log1p(1e-6), ncu.log(1+1e-6))

def test_special(self):
assert_equal(ncu.log1p(np.nan), np.nan)
assert_equal(ncu.log1p(np.inf), np.inf)
with np.errstate(divide="ignore"):
with np.errstate(invalid="ignore", divide="ignore"):
assert_equal(ncu.log1p(np.nan), np.nan)
assert_equal(ncu.log1p(np.inf), np.inf)
assert_equal(ncu.log1p(-1.), -np.inf)
with np.errstate(invalid="ignore"):
assert_equal(ncu.log1p(-2.), np.nan)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

another unrelated PR that somehow got in here

assert_equal(ncu.log1p(-np.inf), np.nan)

Expand Down
0