Skip to content

Commit 9fe0cf8

Browse files
authored
Update Project.toml (#30)
Co-authored-by: Danny Sharp <[email protected]>
1 parent 0aa65af commit 9fe0cf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algos.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function fft_dft!(out::AbstractVector{Complex{T}}, in::AbstractVector{T}, N::Int
8080
wk *= w
8181
wkn = wk
8282
end
83-
@inbounds @turbo for k in halfN+1:N-1
83+
@inbounds for k in halfN+1:N-1
8484
out[start_out + stride_out*k] = conj(out[start_out + stride_out*(N-k)])
8585
end
8686
end

0 commit comments

Comments
 (0)