You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another temporary fix in the meantime on the ClassicalOrthogonalPolynomials.jl side could be to have a method like
function ContinuumArrays.plan_grid_transform(F::Fourier, szs::Tuple{Block{1,Int}}, dims=ntuple(identity, Val(1)))
return ContinuumArrays.plan_grid_transform(F, last(axes(F, 2)[only(szs)]), dims)
end
to force the plan_grid_transform necessary with the pirated method to work (with the last(...) needed to convert the szs to an Int since the transform seems to work in that case).
Loading
HarmonicOrthogonalPolynomials
breaksexpand(Fourier(), f)
(and probably other methods, but this is the only issue I keep hitting).I think the issue is the piracy in this line
HarmonicOrthogonalPolynomials.jl/src/multivariateops.jl
Line 94 in 00e3a5f
which would make sense why I'm only hitting it with
Fourier()
currently since it uses blocks (unlike e.g.Legendre()
).The text was updated successfully, but these errors were encountered: