about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorConnor Baker <connor.baker@tweag.io>2023-05-24 12:48:20 -0400
committerConnor Baker <connor.baker@tweag.io>2023-05-24 12:56:22 -0400
commit222d966273a9ce85964bd82ec31c41f12099afa7 (patch)
treea8788b8e452dc9a76e11ee8b6bb95d3ba52265b8 /pkgs/applications/science
parent9d7f13350d17cd611256d2b943f0b6f1bbbd7919 (diff)
cudaPackages.cudnn: remove patch version from name to conform with cudaPackages standard
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/caffe/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix
index a05a498420400..4cd2511786b34 100644
--- a/pkgs/applications/science/math/caffe/default.nix
+++ b/pkgs/applications/science/math/caffe/default.nix
@@ -27,7 +27,7 @@ let
   # Earlier versions of cudatoolkit use pre-8.x CUDNN, so we use the default.
   cudnn = if lib.versionOlder cudatoolkit.version "10.1"
     then cudaPackages.cudnn
-    else cudaPackages.cudnn_7_6_5;
+    else cudaPackages.cudnn_7_6;
 in
 
 assert leveldbSupport -> (leveldb != null && snappy != null);