summaryrefslogtreecommitdiff
path: root/numpy/core/src/npymath
Commit message (Expand)AuthorAgeFilesLines
* STY: Break some long linesMark Wiebe2010-12-031-3/+8
* BUG: core: Some fixes and clean up of floating point exception codeMark Wiebe2010-12-032-13/+137
* ENH: core: Add floating point exception support to the half/float16 typeMark Wiebe2010-12-011-8/+72
* ENH: core: Create half/float16 data typeMark Wiebe2010-12-011-0/+461
* BUG: attempt at fixing alpha build failure (quad prec little endian).David Cournapeau2010-07-271-0/+35
* BUG: quick and ugly fix for long double on linux ppc.David Cournapeau2010-07-201-0/+124
* ENH: fix long double detection for linux ppcDavid Cournapeau2010-07-191-0/+3
* BUG: Fix typo. Closes ticket #1496.Charles Harris2010-05-281-1/+1
* ENH: Try to make log1p a bit more resistant to compiler shenanigans.Charles Harris2010-04-051-6/+9
* ENH: Use standard npy constant definitions in log2, exp2 functions.Charles Harris2010-04-051-17/+14
* ENH: Make npy_log2_1p and npy_exp2_1m use standard functions.Charles Harris2010-04-051-59/+49
* STY+BUG: fix unused and unitialized variable.David Cournapeau2009-12-141-3/+3
* BUG: fix bug failure on big endian arch on Darwin.David Cournapeau2009-12-141-4/+4
* BUG: #1329: fix spacing for large values.David Cournapeau2009-12-131-5/+159
* BUG: Fix bugs in complex pow (fixes #1313)Pauli Virtanen2009-12-071-8/+7
* BUG: icc 11 requires complex double, complex alone is not enough to define a ...David Cournapeau2009-12-041-1/+1
* Another attempt at a truly cross-platform nextafterl implementationmdroe2009-11-132-188/+211
* BUG: do not use bitfields for bit-twidling of long doubles.David Cournapeau2009-11-122-99/+233
* ENH: add C implementation of spacing in npymath.David Cournapeau2009-11-101-0/+20
* ENH: make ieee754 a templated file, need for spacing.David Cournapeau2009-11-101-0/+0
* STY: fix hard tab.David Cournapeau2009-11-101-32/+32
* BUG: ppc on darwin has long double aligned on 16 bytes - adjust IEEEl2bits ac...David Cournapeau2009-11-091-0/+16
* ENH: add nextafterl implementation.David Cournapeau2009-11-091-7/+54
* ENH: define union to access exact binary content of long double representatio...David Cournapeau2009-11-091-0/+72
* BUG: float.h inclusion was lost somewhere.David Cournapeau2009-11-091-0/+1
* ENH: put all mandatory headers for npymath in one common header.David Cournapeau2009-11-095-21/+12
* BUG: do not include complex.h in public headers - this cannot work with C++, ...David Cournapeau2009-11-071-0/+4
* BUG: typo when defining internal nextafterf.David Cournapeau2009-11-051-1/+1
* BUG: add missing macros mandatory for internal nextafter implementation.David Cournapeau2009-11-051-0/+40
* BUG: forgot to remove npy_creal/cimag definition in npymath lib, redundant wi...David Cournapeau2009-11-041-2/+2
* ENH: optimize real/imag extraction function, by making them inline.David Cournapeau2009-11-041-24/+0
* Fix indentation for cexp.David Cournapeau2009-11-041-147/+147
* Handle special cases in our custom cexp function.David Cournapeau2009-11-041-4/+53
* Fix typos in some complex definitions.David Cournapeau2009-11-041-2/+2
* Mention difference between simple decorators and implementations for complex ...David Cournapeau2009-11-041-3/+7
* Implement float and long double versions of complex functions.David Cournapeau2009-11-042-87/+125
* Fix our private replacement to clog.David Cournapeau2009-11-041-1/+1
* MS compiler does not like funky initializer for float.David Cournapeau2009-11-041-1/+1
* Fix npy_creal/npy_cimag when no complex support is available.David Cournapeau2009-11-041-4/+10
* Use original npy complex type instead of custom one for npymath.David Cournapeau2009-11-042-27/+26
* Pull cpack into the npy math API, prefix it with npy_, and use it in npymath ...David Cournapeau2009-11-042-37/+13
* Fix csqrt so that only npy_fabs is used, not fabs.David Cournapeau2009-11-041-1/+1
* Fix csqrt so that it does not depend on complex support.David Cournapeau2009-11-041-2/+2
* Implement ccos, csin, clog, carg, cpow complex functions.David Cournapeau2009-11-041-3/+53
* Implement stubs for clog, ccos, csin and cpow.David Cournapeau2009-11-041-2/+18
* Implement csqrt.David Cournapeau2009-11-041-2/+69
* Add cexp function.David Cournapeau2009-11-041-0/+29
* Fix typo.David Cournapeau2009-11-041-1/+1
* Do not use union initializaer: another thing that MS compiler cannot handle.David Cournapeau2009-11-041-2/+4
* npymath now implements cabs, creal and cimag.David Cournapeau2009-11-042-36/+34