Francesc Alted
Francesc Alted
[This was originally reported by @ahendry2688 in https://github.com/Blosc/python-blosc/issues/131#issuecomment-353257366. This really belongs here.] Sorry, I meant bcolz. I did a regular pip install from the command prompt, ran `bcolz.test()` three times,...
The next code triggers the segfault sporadically: ``` import bcolz a = bcolz.ones(1e7) a.resize(2e7) ``` Not sure about the cause, but valgrind is not saying anything immediately obvious...
That would allow the next code to work correctly: ``` In [1]: import bcolz In [2]: a = bcolz.arange(1e7) In [3]: b = bcolz.arange(1e7) In [4]: a == b Out[4]:...
_From [[email protected]](https://code.google.com/u/105358803093019457519/) on June 07, 2012 16:43:59_ It would be useful to add np.mininum and np.maximum functions. 'maximum(x-a, 0)' would be faster and clearer than 'where(x-a>0,x-a,0) _Original issue: http://code.google.com/p/numexpr/issues/detail?id=86_
_From [[email protected]](https://code.google.com/u/107846061536121574655/) on February 19, 2012 03:06:02_ 1. a = numpy.random.random((10000,10000)) 2. numexpr.evaluate("sin(a) + exp(a) + log(a + 3)").sum() - fast, uses all cores 3. numexpr.evaluate("sum(sin(a) + exp(a) + log(a...
_From [[email protected]](https://code.google.com/u/115849668097078750829/) on February 21, 2012 14:11:39_ Numexpr is currently supporting a number of functions from the Intel Math libraries. For calculations involving statistics, peak analysis and other areas a...
_From [[email protected]](https://code.google.com/u/111502234986314066506/) on October 09, 2011 05:15:28_ The following edge cases is not correctly handled by the numexpr 'where' function. Basically, implicit booleans (using 1 as True) are not handled...
_From [[email protected]](https://code.google.com/u/116542735539833781200/) on January 07, 2013 12:27:41_ What steps will reproduce the problem? 1. a = arange(10) 2. numexpr.evaluate('(a == a) + (a == a)') What is the expected output?...
_From [[email protected]](https://code.google.com/u/114215716443835783112/) on June 05, 2012 22:59:55_ This is an enhancement request. I frequently need to create multidimensional histograms from data stored in PyTables, usually of variables computed from the...
_From [[email protected]](https://code.google.com/u/106918717354666582258/) on October 29, 2013 18:45:01_ What steps will reproduce the problem? luke@node041 ~ $ python Python 2.7.3 (default, Sep 25 2013, 09:17:55) [GCC 4.4.5 20110214 (Red Hat 4.4.5-6)]...