Skip to content

Commit

Permalink
Some formatted files
Browse files Browse the repository at this point in the history
  • Loading branch information
mfherbst committed Sep 27, 2020
1 parent 29d3cfa commit 62c6c37
Show file tree
Hide file tree
Showing 61 changed files with 1,767 additions and 1,111 deletions.
4 changes: 2 additions & 2 deletions src/DFTK.jl
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ function __init__()
#
# The global variable GENERIC_FFT_LOADED makes sure that things are only
# included once.
@require IntervalArithmetic="d1acc4aa-44c8-5952-acd4-ba5d80a2a253" begin
@require IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253" begin
include("intervals_workarounds.jl")
!isdefined(DFTK, :GENERIC_FFT_LOADED) && include("fft_generic.jl")
end
@require DoubleFloats="497a8b3b-efae-58df-a0af-a86822472b78" begin
@require DoubleFloats = "497a8b3b-efae-58df-a0af-a86822472b78" begin
!isdefined(DFTK, :GENERIC_FFT_LOADED) && include("fft_generic.jl")
end
end
Expand Down
37 changes: 28 additions & 9 deletions src/FourierTransforms.jl/FourierTransforms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,35 @@ module FourierTransforms

using AbstractFFTs

import AbstractFFTs: Plan, ScaledPlan,
fft, ifft, bfft, fft!, ifft!, bfft!,
plan_fft, plan_ifft, plan_bfft, plan_fft!, plan_ifft!, plan_bfft!,
rfft, irfft, brfft, plan_rfft, plan_irfft, plan_brfft,
fftshift, ifftshift,
rfft_output_size, brfft_output_size,
plan_inv, normalization
import AbstractFFTs:
Plan,
ScaledPlan,
fft,
ifft,
bfft,
fft!,
ifft!,
bfft!,
plan_fft,
plan_ifft,
plan_bfft,
plan_fft!,
plan_ifft!,
plan_bfft!,
rfft,
irfft,
brfft,
plan_rfft,
plan_irfft,
plan_brfft,
fftshift,
ifftshift,
rfft_output_size,
brfft_output_size,
plan_inv,
normalization

import Base: show, summary, size, ndims, length, eltype,
*, inv, \
import Base: show, summary, size, ndims, length, eltype, *, inv, \

import LinearAlgebra: mul!

Expand Down
Loading

0 comments on commit 62c6c37

Please sign in to comment.