Skip to content

Make chebyshev transforms type stable, make points lazy #114

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

Merged
merged 11 commits into from
Aug 17, 2020
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "FastTransforms"
uuid = "057dd010-8810-581a-b7be-e3fc3b93f78c"
version = "0.9.4"
version = "0.10.0"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -20,7 +20,7 @@ ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"

[compat]
AbstractFFTs = "0.4, 0.5"
ArrayLayouts = "0.3.7"
ArrayLayouts = "0.3.7, 0.4"
BinaryProvider = "0.5"
DSP = "0.6"
FFTW = "1"
Expand Down
5 changes: 3 additions & 2 deletions src/FastTransforms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import DSP
@reexport using FFTW

import Base: unsafe_convert, eltype, ndims, adjoint, transpose, show, *, \,
inv, size, view
inv, length, size, view, getindex

import Base.GMP: Limb

Expand Down Expand Up @@ -66,7 +66,8 @@ include("PaduaTransform.jl")
export plan_chebyshevtransform, plan_ichebyshevtransform, plan_chebyshevtransform!, plan_ichebyshevtransform!,
chebyshevtransform, ichebyshevtransform, chebyshevpoints,
plan_chebyshevutransform, plan_ichebyshevutransform, plan_chebyshevutransform!, plan_ichebyshevutransform!,
chebyshevutransform, ichebyshevutransform
chebyshevutransform, ichebyshevutransform,
chebyshevtransform!, ichebyshevtransform!, chebyshevutransform!, ichebyshevutransform!

include("chebyshevtransform.jl")

Expand Down
Loading