Simon Kornblith
Simon Kornblith
I'm working on revising Synchrony.jl to use BLAS where profitable, which can give a major speedup, but it may be a month before I get to finishing that. In general...
This is a late response, but the segfaults may come from trying to apply a plan that expects an array with a certain alignment to an array with a different...
Not entirely sure what's going on with the history here, but the diff looks right. I guess the nuclear option is: ``` sh git diff master > patch.diff git reset...
It seems there is a bug in SubArrays on 0.3 that prevents this from working at all there.
What would you expect the behavior to be if `n != nfft`?
It's likely that we should apply some window by default if none is specified, since, as you say, this is what other implementations do.
This can be done in principle. But we need to figure out how to get the exponent size and bias. I'm not sure how to do that. You can always...
This would most likely need to be implemented in a special way, since libhdf5 wants a real file and not an IOBuffer. libhdf5 has in-memory file support that could be...
Julia is not presently multithreaded. Those are separate processes. HDF5 does not support this for writing (writing from multiple processes simultaneously would probably corrupt it), but for reading you could...
We could think about overloading `Base.serialize` for HDF5File/JLDFile, though, so that sending them to another process would automatically open the file there (or maybe throw an error if the file...