From dcd6bfbc2d751542eef8a80aa3409f843da8e1ca Mon Sep 17 00:00:00 2001 From: AshtonSBradley Date: Fri, 19 Apr 2024 12:03:06 +1200 Subject: [PATCH] remove thread statements since FFTW shares julia threads --- Project.toml | 1 - src/QuantumFluidSpectra.jl | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index eea27e3..f2bed14 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/src/QuantumFluidSpectra.jl b/src/QuantumFluidSpectra.jl index 5193b51..ec6506b 100644 --- a/src/QuantumFluidSpectra.jl +++ b/src/QuantumFluidSpectra.jl @@ -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)