Skip to content

Commit

Permalink
remove thread statements since FFTW shares julia threads
Browse files Browse the repository at this point in the history
  • Loading branch information
AshtonSBradley committed Apr 19, 2024
1 parent 1301dd5 commit dcd6bfb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Hwloc = "0e44f5e4-bd66-52a0-8798-143a42290a1d"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
PaddedViews = "5432bcbf-9aad-5242-b902-cca2824c8663"
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Tullio = "bc48ee85-29a4-5162-ae0b-a64e1601d4bc"
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
Expand Down
4 changes: 1 addition & 3 deletions src/QuantumFluidSpectra.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
module QuantumFluidSpectra

using Reexport
using Tullio
using Hwloc
@reexport using FFTW
using FFTW
using SpecialFunctions
using PaddedViews
using UnPack
FFTW.set_num_threads(8)

# fallback since fast_hypot is 2 argument only
@fastmath hypot(x::Float64, y::Float64, z::Float64)=sqrt(x^2+y^2+z^2)
Expand Down

0 comments on commit dcd6bfb

Please sign in to comment.