about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jaxlib
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2021-09-04 21:41:40 +0000
committerSamuel Ainsworth <skainsworth@gmail.com>2021-09-04 21:42:04 +0000
commit8f06bd48f26af655d9c112b27eb3d22a874685c4 (patch)
tree4bfc2767bd0822039d085fc441e1b9d511c22f31 /pkgs/development/python-modules/jaxlib
parent3ea5dbdd720abec9a48665a69e69e5486bfe0fa0 (diff)
python3Packages.jaxlib: add cudatoolkit_11 to rpaths
Diffstat (limited to 'pkgs/development/python-modules/jaxlib')
-rw-r--r--pkgs/development/python-modules/jaxlib/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/jaxlib/default.nix b/pkgs/development/python-modules/jaxlib/default.nix
index af0755bf9dd09..7761c0372994a 100644
--- a/pkgs/development/python-modules/jaxlib/default.nix
+++ b/pkgs/development/python-modules/jaxlib/default.nix
@@ -4,11 +4,14 @@
 
 # For future reference, the easiest way to test the GPU backend is to run
 #   NIX_PATH=.. nix-shell -p python3 python3Packages.jax "python3Packages.jaxlib.override { cudaSupport = true; }"
+#   export XLA_FLAGS=--xla_gpu_force_compilation_parallelism=1
 #   python -c "from jax.lib import xla_bridge; assert xla_bridge.get_backend().platform == 'gpu'"
 #   python -c "from jax import random; random.PRNGKey(0)"
-# See https://github.com/google/jax/issues/971#issuecomment-508216439. There's
-# no convenient way to test the GPU backend in the derivation since the nix
-# build environment blocks access to the GPU.
+#   python -c "from jax import random; x = random.normal(random.PRNGKey(0), (100, 100)); x @ x"
+# There's no convenient way to test the GPU backend in the derivation since the
+# nix build environment blocks access to the GPU. See also:
+#   * https://github.com/google/jax/issues/971#issuecomment-508216439
+#   * https://github.com/google/jax/issues/5723#issuecomment-913038780
 
 { addOpenGLRunpath, autoPatchelfHook, buildPythonPackage, config, fetchPypi
 , fetchurl, isPy39, lib, stdenv
@@ -57,6 +60,7 @@ buildPythonPackage rec {
   # artifacts. autoPatchelfHook runs in postFixup and auto-stripping runs in the
   # patchPhase. Dependencies:
   #   * libcudart.so.11.0 -> cudatoolkit_11.lib
+  #   * libcublas.so.11   -> cudatoolkit_11
   #   * libcuda.so.1      -> opengl driver in /run/opengl-driver/lib
   preInstallCheck = lib.optional cudaSupport ''
     shopt -s globstar
@@ -65,7 +69,9 @@ buildPythonPackage rec {
 
     for file in $out/**/*.so; do
       rpath=$(patchelf --print-rpath $file)
-      patchelf --set-rpath "$rpath:${lib.makeLibraryPath [ cudatoolkit_11.lib ]}" $file
+      # For some reason `makeLibraryPath` on `cudatoolkit_11` maps to
+      # <cudatoolkit_11.lib>/lib which is different from <cudatoolkit_11>/lib.
+      patchelf --set-rpath "$rpath:${cudatoolkit_11}/lib:${lib.makeLibraryPath [ cudatoolkit_11.lib ]}" $file
     done
   '';