Pablo Winant

Results 51 comments of Pablo Winant

About the reordering and subsequent testing issues. It's clear that current tests for multidimensional integration will break and will need to be rewritten. There are two simple ways to get...

I've been looking at this issue again since the `cartesian` routine has been renamed. Replacing Fortran order by C order in `quad.py` seems very easy (as in replacing `ckron(*weights[::-1])` by...

I missed the start of this thread, so this is probably underway. Starting with notebooks links is a good idea. That's what reddit does and it works very well. For...

Apparently numba support for generators in nopython mode in 0.18.1 (http://numba.pydata.org/numba-doc/0.18.1/release-notes.html) so in principle it should work. However, passing keyword arguments or unpacking them is not supported, which is probably...

...hum, I honnestly have no idea what the error means. But there are two potential problems: - returning a list doesn't work in nopython mode. You can try with a...

I completely agree with @sglyon and @cc7768 about development plans and with @davidrpugh in the sense that, to me, a clear notebook explaining the various flavours of interpolation and the...

@davidrpugh : do you now if the RandomState guarantees you the exact same random numbers across computers / platforms ? One reason to use a seed and not generate a...

Indeed, being able to supply a seed argument is a must-have, if we want stochastic results to be really replicable. Giving the user an option to supply a random seed...

I don't have the full sulution right away but there are two comments that can be made: - nopython mode doesn't work because the class is defined out of the...

That's a tricky one. Currently the state of optimizing functions in Python is not ideal and it is hard to write efficiently some algorithm that rely on repeated optimization. In...