-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate out BigFloat FFT #304
Comments
Maybe it should be moved to FastTransforms.jl?@MikaelSlevinsky |
It seems like the relevant Julia issue is JuliaLang/julia#5155 and closed pull request is JuliaLang/julia#6193. It seems like eventually there will be something like an FFTW.jl (sub)module part of a StdLib (set of) package(s). I don't know exactly what the issue is. Is it that the BigFloat FFT in ApproxFun is useful in ToeplitzMatrices, but it's non-sensical to make ToeplitzMatrices dependent on ApproxFun just for a BigFloat FFT? It would be nice to have a pure-Julia FFT supporting BigFloat with FFTW1-like code generation available @stevengj. |
I just rewrote the BigFloat FFT so that ToeplitzMatrices.jl can work without requiring it, by making the plans <: Base.DCT.Plan, so it's not really a dependancy issue anymore. It's more to make the functionality available to others without requiring ApproxFun. FastTransforms.jl seems like a more reasonable home for it. |
Maybe SlowTransforms.jl for the BigFloat case? 😉 |
This would be useful for other packages, e.g., ToeplitzMatrices.jl
The text was updated successfully, but these errors were encountered: