Commit a6482039 authored by Daniel Fahey's avatar Daniel Fahey
Browse files

python3Packages.bitsandbytes: add missing CUDA include outputs

The CUDA manifest restructuring in 29ce0536 moved headers to separate `include` outputs. Add the `include` outputs from libcublas and libcusparse to cuda-common-redist to fix the build failure reported in https://github.com/NixOS/nixpkgs/issues/456713.
parent b9c04f1e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -45,10 +45,12 @@ let
    (lib.getDev cuda_cccl) # <thrust/*>
    (lib.getDev libcublas) # cublas_v2.h
    (lib.getLib libcublas)
    (lib.getInclude libcublas) # cublasLt.h
    libcurand
    libcusolver # cusolverDn.h
    (lib.getDev libcusparse) # cusparse.h
    (lib.getLib libcusparse) # cusparse.h
    (lib.getInclude libcusparse) # cusparse.h
    (lib.getDev cuda_cudart) # cuda_runtime.h cuda_runtime_api.h
  ];