Joshua Klein
Joshua Klein
I have a fork where I had this feature working for the previous version. I was still trying to debug some unreliable function detection when indented. It involved a modest...
I did not want to work on my own work and saw this thread and thought I hadn't abused `matplotlib` in a while. Here's a Python implementation that is scale...
Sure. I may have refined this a bit by then for figure making.
@tupui I moved the loops to a `cdef` function that runs without the GIL and just invoke that inside the nogil block. This may be a little bit slower in...
@mdhaber The `cho_cov_ = cho_cov.astype(dtype, copy=False)` step is correct. The conversion logic in this function is obtuse because Cython can't infer fused type specializations from buffer types and we are...
On its own, my changes don't make `gaussian_kde.evaluate` faster. What they do is release the global interpreter lock while doing the time consuming triply nested for-loop of numerical operations so...
This partially addresses #4384. It assumes that _all_ readable services support seeking, which may not be valid, but it mirrors the implementation `seek`.
I've added the capability check to the Python bindings, but is there anything specific I should do w.r.t. the RFC? Or is it just a blocker for this PR?
Is it correct to say that `seek` operations are now supported universally since the behavior is no longer described by the `Capability` type? I don't see any documentation about it...
Thank you. I've refactored the bindings to reflect that. The `Capability` struct the `File` types carry around now probably is no longer relevant but I left it there for the...