Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: core: Rename forcecopy= to copy= in ndarray.astype | Mark Wiebe | 2011-06-01 | 3 | -14/+15 |
| | | | | | This makes it match the parameter in the array constructor with the same meaning. | ||||
* | ENH: core: Generalize ndarray.astype to take new standard keyword arguments | Mark Wiebe | 2011-05-31 | 3 | -10/+197 |
| | | | | | These include order=, casting=, subok=. Also added a forcecopy= parameter to allow skipping of the copy when possible. | ||||
* | ENH: speed up in1d() in the case of ar1 >> ar2. Closes #1603. | rgommers | 2011-05-29 | 2 | -55/+59 |
| | | | | | | A timing script justifying the switching criterion is attached to ticket 1603. Thanks to Neil Crighton. | ||||
* | BUG: Regression of object <-> structured array data copying (ticket #1838) | Mark Wiebe | 2011-05-21 | 3 | -4/+23 |
| | |||||
* | BUG: Iterator reduction buffering bug when the inner loop is bigger than the ↵ | Mark Wiebe | 2011-05-21 | 2 | -2/+24 |
| | | | | | | | buffer size (ticket #1837) The symptoms of this bug were showing up only for a greater number of operands because einsum runs specialized loops for fewer operands and dimensions. | ||||
* | BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be ↵ | Pearu Peterson | 2011-05-18 | 2 | -2/+3 |
| | | | | verbose on unspecified use modules. | ||||
* | BUG: PyArray_FillWithZero didn't work in the general case | Mark Wiebe | 2011-05-18 | 2 | -1/+9 |
| | | | | | | | The call to the stransfer function had incorrect arguments. This didn't show up because all the tests of einsum, the only current user of the function, produced contiguous arrays which are special cased. | ||||
* | BUG: Fix buffered reduction case in nditer (ticket #1834) | Mark Wiebe | 2011-05-18 | 3 | -3/+22 |
| | |||||
* | TST: Reduced test case for ticket #1834 | Mark Wiebe | 2011-05-18 | 1 | -0/+19 |
| | | | | | | The ticket's bug is visible in einsum, but is caused by an error in how the reduction double loop interacts with buffering in the nditer. This test case directly tests the nditer triggering the bad code. | ||||
* | STY: Cleanup test_linalg a bit. | Charles Harris | 2011-05-10 | 1 | -22/+42 |
| | |||||
* | TST: Add test for QR on empty array | Skipper Seabold | 2011-05-10 | 1 | -0/+5 |
| | |||||
* | BUG: Add not empty check to linalg.qr | Skipper Seabold | 2011-05-10 | 1 | -0/+1 |
| | |||||
* | use np.atleast_Nd() to boost dimensions to ndmin | Derek Homeier | 2011-05-07 | 2 | -7/+24 |
| | |||||
* | changed ndmin option in loadtxt to return shape (1, X.size) for single-row ↵ | Derek Homeier | 2011-05-07 | 2 | -3/+12 |
| | | | | inputs | ||||
* | BUG: Fix the order of declaring variables in f2py generated code. The bug ↵ | Pearu Peterson | 2011-05-07 | 1 | -2/+6 |
| | | | | was noticable with ifort but not with gfortran. | ||||
* | BUG: Fix two argument size support for Fortran module routines. Reverted ↵ | Pearu Peterson | 2011-05-06 | 4 | -10/+76 |
| | | | | size-to-shape mapping patch and implemented two argument size function in C. | ||||
* | BUG: Fix assumed shape support for module routines. | Pearu Peterson | 2011-05-06 | 4 | -12/+70 |
| | |||||
* | BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case. | Michael Droettboom | 2011-05-02 | 1 | -0/+1 |
| | |||||
* | BUG: Fix a bug where memory was being read after being freed. | Michael Droettboom | 2011-05-02 | 1 | -1/+3 |
| | | | | | | | On my system (Python 2.7, RHEL5), the call to func.__name__ returns a temporary Python string object with only a single reference. Dereferencing it before copying out its contents results in reading freed memory. | ||||
* | BUG: Fix reference counting leaks in C-based multiarray_tests | Michael Droettboom | 2011-05-02 | 1 | -3/+0 |
| | |||||
* | BUG: Fix memory leak in UMath_Tests_test_signature test | Michael Droettboom | 2011-05-02 | 1 | -0/+1 |
| | |||||
* | BUG: Fix memory leak in f2py_rout_wrap_call test. | Michael Droettboom | 2011-05-02 | 1 | -1/+3 |
| | |||||
* | BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL builds | Mark Wiebe | 2011-05-01 | 1 | -11/+4 |
| | | | | | | Thanks to Christoph Gohlke for tracking down the error. It appears to stem from the C preprocessor making the use of an undefined symbol become arbitrary behavior rather than a compile error. | ||||
* | TST: fix test due to recent change for large arrays (ValueError / MemoryError). | Ralf Gommers | 2011-04-30 | 1 | -2/+2 |
| | |||||
* | DOC:BUG: fix percentile examples. Closes #1813. | Ralf Gommers | 2011-04-29 | 1 | -7/+6 |
| | |||||
* | BUG: Remove buggy test for error trying to allocate too large array. | Charles Harris | 2011-04-27 | 1 | -2/+1 |
| | |||||
* | TST: fix test for too large array, raises ValueError, not MemoryError. | Ralf Gommers | 2011-04-27 | 1 | -1/+1 |
| | | | | Closes #1811. | ||||
* | TST: fix forgotten import in core/test_regression.py | Ralf Gommers | 2011-04-27 | 1 | -0/+1 |
| | |||||
* | ENH: Put line ending on message to stderr. | Charles Harris | 2011-04-26 | 1 | -1/+1 |
| | |||||
* | BUG: Make some variables npy_int8 instead of char. | Charles Harris | 2011-04-26 | 1 | -1/+1 |
| | |||||
* | BUG: linalg: Update the rwork size in the call to zgesdd to reflect a ↵ | Jason Grout | 2011-04-26 | 1 | -1/+2 |
| | | | | | | documentation bugfix in Lapack SVN revision 729. See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=1779 | ||||
* | DOC: Add note about the danger of integer overflow when computing array | Charles Harris | 2011-04-24 | 1 | -0/+6 |
| | | | | sizes by multiplying the dimensions together. | ||||
* | ENH: Ticket #1218, allow use of custom formatters in array2string and | Ralf Gommers | 2011-04-24 | 2 | -48/+264 |
| | | | | set_printoptions. Add tests for the new functionality. | ||||
* | BUG: Switch char to npy_byte/npy_ubyte in min_scalar_type | Mark Wiebe | 2011-04-23 | 1 | -2/+2 |
| | |||||
* | TST: Try to make the test for checking array size from dimensions a | Charles Harris | 2011-04-23 | 1 | -1/+2 |
| | | | | bit more successful. | ||||
* | BUG: Fix regression in checking array size from dimensions. | Christolph Gohlke | 2011-04-23 | 2 | -4/+5 |
| | |||||
* | BUG: Fix another cast to char. | Charles Harris | 2011-04-23 | 1 | -2/+2 |
| | |||||
* | BUG: Fix signed char assumption in einsum label parsing | Mark Wiebe | 2011-04-23 | 1 | -5/+22 |
| | |||||
* | WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function") | Mark Wiebe | 2011-04-23 | 7 | -36/+14 |
| | |||||
* | STY: Make include flag name match file name. | Charles Harris | 2011-04-23 | 1 | -2/+2 |
| | |||||
* | BUG: Change some char variables to npy_int8 so that they are always signed | Charles Harris | 2011-04-23 | 1 | -32/+32 |
| | | | | types. | ||||
* | BUG: ticket #1805, replace type char by signed char for tables. | Charles Harris | 2011-04-23 | 2 | -12/+12 |
| | |||||
* | BUG: PyArray_FromString failed to disallow object arrays | Mark Wiebe | 2011-04-22 | 1 | -1/+2 |
| | |||||
* | STY: Add comment about errobj reference ownership | Mark Wiebe | 2011-04-22 | 1 | -1/+5 |
| | |||||
* | BUG: Fix memory leak in reduction ufuncs -- the error object was not being ↵ | Michael Droettboom | 2011-04-22 | 1 | -0/+6 |
| | | | | dereferenced in the non-error case. | ||||
* | TST: Add some specific desirable type-promotion use cases to the tests | Mark Wiebe | 2011-04-22 | 1 | -1/+50 |
| | |||||
* | DOC: Document the new keyword arguments for ufuncs | Mark Wiebe | 2011-04-22 | 1 | -2/+9 |
| | |||||
* | DOC: Improve the documentation about type promotion | Mark Wiebe | 2011-04-22 | 1 | -6/+50 |
| | |||||
* | BUG: Fix type promotion regression for ufuncs (Ticket #1798) | Mark Wiebe | 2011-04-22 | 1 | -27/+82 |
| | |||||
* | BUG: Fix type promotion regression for the result_type function (Ticket #1798) | Mark Wiebe | 2011-04-22 | 1 | -15/+105 |
| |