about summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-14 09:52:49 +0200
committerGitHub <noreply@github.com>2023-03-14 09:52:49 +0200
commit1474943fd91fbe5567f7582acf568e0f999f4af1 (patch)
tree2059979e3f9ebaf97d6c5c0ac44397fca99b1a73 /pkgs/top-level/python-packages.nix
parent39286f0b63f7dd6fbc11a9f561aca66aef5314f6 (diff)
parent0d758c2aa116f2eb17ce5cde62c3b1e361a64661 (diff)
Merge pull request #220017 from azuwis/torch
python3Packages.torch: Fix performance problem on darwin
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c63ac709b2950..e39f39cae3228 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -11715,7 +11715,7 @@ self: super: with self; {
 
   torch = callPackage ../development/python-modules/torch {
     cudaSupport = pkgs.config.cudaSupport or false;
-    inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
+    inherit (pkgs.darwin.apple_sdk.frameworks) Accelerate CoreServices;
     inherit (pkgs.darwin) libobjc;
     inherit (pkgs.llvmPackages_rocm) openmp;
   };