FFTW.jl
FFTW.jl copied to clipboard
`plan.pinv` undefined reference
Feel free to close this if this is expected/tolerated. I just happened across this error when trying to serialize an object that contained an FFTPlan, and the serializer (BSON) trips the undefined reference
error. It'd be nice if it didn't error out, but I also understand it's a weird case.
using FFTW
plan = plan_fft(rand(20,20))
plan.pinv
ERROR: UndefRefError: access to undefined reference
plan.pinv
is lazily initialized if you invert the plan. Nowadays maybe we should use a Union{Nothing,Plan}
instead of leaving the field uninitialized.