Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/FFTW.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ import AbstractFFTs: Plan, ScaledPlan,

export dct, idct, dct!, idct!, plan_dct, plan_idct, plan_dct!, plan_idct!

# FFTW flags from fft.jl
if VERSION ≥ v"1.11.0"
include("public.jl")
end


include("providers.jl")

function fftw_init_check()
Expand Down
10 changes: 10 additions & 0 deletions src/public.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
public MEASURE
public DESTROY_INPUT
public UNALIGNED
public CONSERVE_MEMORY
public EXHAUSTIVE
public PRESERVE_INPUT
public PATIENT
public ESTIMATE
public WISDOM_ONLY
public NO_SIMD
Loading