summaryrefslogtreecommitdiff
path: root/numpy/linalg/tests/test_linalg.py
Commit message (Expand)AuthorAgeFilesLines
* ENH: update numpy.linalg.multi_dot to accept an `out` argument (#15715)sslivkoff2020-04-301-0/+35
* MAINT: Add better error handling in linalg.norm for vectors and clarify it in...Jim2020-03-121-1/+2
* Merge pull request #15468 from hameerabbasi/fix-svd-sortedMatti Picus2020-02-061-0/+8
|\
| * BUG: Fix for SVD not always sorted with hermitian=TrueHameer Abbasi2020-02-051-0/+8
* | TST: mark the top 3 slowest tests to save ~10 secondsmattip2020-02-021-0/+1
|/
* MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-13/+13
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* TST: linalg: add ilp64 lapack low-memory smoketestPauli Virtanen2019-12-211-0/+28
* TST: fix up issues in requires_memory decoratorPauli Virtanen2019-12-041-1/+1
* TST: linalg: add smoke test for 64-bit blasPauli Virtanen2019-12-011-1/+15
* MAINT: Replace integers in places where booleans are expectedMSeifert042019-07-011-3/+3
* Merge pull request #12693 from eric-wieser/gh-9436-hermitianMatti Picus2019-01-131-13/+46
|\
| * ENH: Add a hermitian argument to `pinv` and `svd`, matching `matrix_rank`Eric Wieser2019-01-071-13/+46
* | Merge pull request #12201 from tylerjereddy/test_linalg_commonTypeSebastian Berg2019-01-111-0/+7
|\ \ | |/ |/|
| * TST: coverage for _commonType()Tyler Reddy2018-11-131-0/+7
* | MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#1...Roman Yurchak2018-12-061-4/+1
|/
* Merge pull request #12215 from tylerjereddy/linalg_lstsq_dim_checkCharles Harris2018-11-011-1/+10
|\
| * TST: test dims match on lstsq().Tyler Reddy2018-10-181-1/+10
* | TST: add test for tensorinv()Tyler Reddy2018-10-261-0/+41
|/
* TST: test multi_dot with 2 arraysTyler Reddy2018-10-161-0/+8
* TST: prefer pytest.skip() over SkipTestTyler Reddy2018-09-211-3/+3
* TST: Parametrize some linalg tests over types.Elliott Sales de Andrade2018-09-061-70/+52
* MAINT: reformat line spacing before test methodsmattip2018-08-191-2/+0
* Merge pull request #11691 from charris/fix_matrix_power_regressionMatti Picus2018-08-081-57/+74
|\
| * BUG: Make matrix_power again work for object arrays.Charles Harris2018-08-081-57/+74
* | ENH: support for empty matrices in linalg.lstsqJeremy Chen2018-08-031-4/+26
|/
* ENH: handle empty matrices in qr decomposition (#11593)Jeremy Chen2018-07-311-12/+19
* ENH: Allow use of svd on empty arraysEric Wieser2018-06-271-13/+13
* TST: linalg: add regression test for gh-8577Pauli Virtanen2018-05-271-0/+36
* Merge branch 'master' into linalg-move-matrix-powerCharles Harris2018-05-141-178/+231
|\
| * MAINT: move linalg tests using matrix to matrixlibMarten van Kerkwijk2018-04-271-179/+232
* | ENH: Allow stacks of matrices in matrix_power.Marten van Kerkwijk2018-04-291-11/+20
|/
* MAINT: Remove all uses of run_module_suite.Charles Harris2018-04-061-6/+1
* TST: Switch to using pytest markersCharles Harris2018-04-041-8/+9
* BUG: linalg: fix corner-case behavior of cond() + use SVD if possiblePauli Virtanen2018-02-121-27/+94
* MAINT: repair deprecated yield testsxoviat2017-12-231-26/+26
* TST: linalg: add basic smoketest for choleskyPauli Virtanen2017-09-301-0/+24
* ENH: add hermitian=False kwarg to matrix_powerCJ Carey2017-09-161-0/+13
* BUG: Fix pinv on matrix stacksEric Wieser2017-09-121-2/+6
* ENH: Warn to change lstsq default for rcondSebastian Berg2017-08-191-1/+18
* MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser2017-08-051-1/+1
* BUG: KeyboardInterrupt is swallowed all over the placeEric Wieser2017-06-031-1/+1
* MAINT: Remove python side empty array handling from linalgSebastian Berg2017-04-291-1/+140
* Merge pull request #8682 from eric-wieser/stack-matrix_rankCharles Harris2017-04-121-2/+3
|\
| * ENH: allow argument to matrix_rank to be stackedEric Wieser2017-02-241-2/+3
* | ENH: Implement most linalg operations for 0x0 matricesEric Wieser2017-03-041-20/+5
* | MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-241-1/+1
|/
* Merge pull request #8584 from eric-wieser/resolve_axisMarten van Kerkwijk2017-02-211-2/+2
|\
| * MAINT: Be specific about where AxisError is raisedEric Wieser2017-02-201-2/+2
| * MAINT: Use normalize_axis_index in all python axis checkingEric Wieser2017-02-201-2/+2