From d55555d43a43c07259176a1e24a3c63c04c480f2 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Fri, 21 Apr 2023 16:27:16 +0200 Subject: [PATCH] Readding hipfft --- derivation.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/derivation.nix b/derivation.nix index c7e2446..9a67608 100644 --- a/derivation.nix +++ b/derivation.nix @@ -12,7 +12,7 @@ , rapidjson ## optional backends -, hipSupport ? false, hip, hipsparse, hipblas, rocthrust, rocrand +, hipSupport ? false, hip, hipfft, hipsparse, hipblas, rocthrust, rocrand , cudaSupport ? false, cudatoolkit , ompSupport ? false , mpiSupport ? false @@ -46,7 +46,7 @@ let rapidjson ] ++ lib.optional cudaSupport cudatoolkit - ++ lib.optional hipSupport [ hip hipsparse hipblas rocrand rocthrust ]; + ++ lib.optional hipSupport [ hip hipfft hipsparse hipblas rocrand rocthrust ]; in stdenvNoCC.mkDerivation { pname = "${basename}"; version = version;