JuliaMath / JuliaMath/FFTW.jl

`lmul!` should be required for in-place application of plans

Open
#77 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
Julia
Stars
300
Forks
61
PR merge metrics
No merged PRs in 30d

Description

Overall, I like the overriding of `*` for planned transforms. But it is a bit odd that `*` modifies what you multiply in the following:
```julia
P = plan_fft!(x); P * x
```
I would propose deprecating `plan_fft!`, and instead only have `plan_fft` with the following usage for the in-place variants:
```julia
P = plan_fft(x); lmul!(P, x)
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.