c66994ce1c
cuda-modules: apply lessons learned from cross-compilation attempts
122 lines
5.0 KiB
Nix
122 lines
5.0 KiB
Nix
# Notes:
|
|
#
|
|
# Silvan (Tweag) covered some things on recursive attribute sets in the Nix Hour:
|
|
# https://www.youtube.com/watch?v=BgnUFtd1Ivs
|
|
#
|
|
# I (@connorbaker) highly recommend watching it.
|
|
#
|
|
# Most helpful comment regarding recursive attribute sets:
|
|
#
|
|
# https://github.com/NixOS/nixpkgs/pull/256324#issuecomment-1749935979
|
|
#
|
|
# To summarize:
|
|
#
|
|
# - `prev` should only be used to access attributes which are going to be overriden.
|
|
# - `final` should only be used to access `callPackage` to build new packages.
|
|
# - Attribute names should be computable without relying on `final`.
|
|
# - Extensions should take arguments to build attribute names before relying on `final`.
|
|
#
|
|
# Silvan's recommendation then is to explicitly use `callPackage` to provide everything our extensions need
|
|
# to compute the attribute names, without relying on `final`.
|
|
#
|
|
# I've (@connorbaker) attempted to do that, though I'm unsure of how this will interact with overrides.
|
|
{
|
|
callPackage,
|
|
cudaVersion,
|
|
lib,
|
|
newScope,
|
|
pkgs,
|
|
config,
|
|
__attrsFailEvaluation ? true,
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
attrsets
|
|
customisation
|
|
fixedPoints
|
|
strings
|
|
versions
|
|
;
|
|
# Backbone
|
|
gpus = builtins.import ../development/cuda-modules/gpus.nix;
|
|
nvccCompatibilities = builtins.import ../development/cuda-modules/nvcc-compatibilities.nix;
|
|
flags = callPackage ../development/cuda-modules/flags.nix { inherit cudaVersion gpus; };
|
|
passthruFunction = final: ({
|
|
inherit cudaVersion lib pkgs;
|
|
inherit gpus nvccCompatibilities flags;
|
|
cudaMajorVersion = versions.major cudaVersion;
|
|
cudaMajorMinorVersion = versions.majorMinor cudaVersion;
|
|
cudaOlder = strings.versionOlder cudaVersion;
|
|
cudaAtLeast = strings.versionAtLeast cudaVersion;
|
|
|
|
# Maintain a reference to the final cudaPackages.
|
|
# Without this, if we use `final.callPackage` and a package accepts `cudaPackages` as an argument,
|
|
# it's provided with `cudaPackages` from the top-level scope, which is not what we want. We want to
|
|
# provide the `cudaPackages` from the final scope -- that is, the *current* scope.
|
|
cudaPackages = final;
|
|
|
|
# TODO(@connorbaker): `cudaFlags` is an alias for `flags` which should be removed in the future.
|
|
cudaFlags = flags;
|
|
|
|
# Exposed as cudaPackages.backendStdenv.
|
|
# This is what nvcc uses as a backend,
|
|
# and it has to be an officially supported one (e.g. gcc11 for cuda11).
|
|
#
|
|
# It, however, propagates current stdenv's libstdc++ to avoid "GLIBCXX_* not found errors"
|
|
# when linked with other C++ libraries.
|
|
# E.g. for cudaPackages_11_8 we use gcc11 with gcc12's libstdc++
|
|
# Cf. https://github.com/NixOS/nixpkgs/pull/218265 for context
|
|
backendStdenv = final.callPackage ../development/cuda-modules/backend-stdenv.nix { };
|
|
|
|
# Loose packages
|
|
|
|
# TODO: Move to aliases.nix once all Nixpkgs has migrated to the splayed CUDA packages
|
|
cudatoolkit = final.callPackage ../development/cuda-modules/cudatoolkit/redist-wrapper.nix { };
|
|
cudatoolkit-legacy-runfile = final.callPackage ../development/cuda-modules/cudatoolkit { };
|
|
|
|
saxpy = final.callPackage ../development/cuda-modules/saxpy { };
|
|
nccl = final.callPackage ../development/cuda-modules/nccl { };
|
|
nccl-tests = final.callPackage ../development/cuda-modules/nccl-tests { };
|
|
});
|
|
|
|
mkVersionedPackageName =
|
|
name: version:
|
|
strings.concatStringsSep "_" [
|
|
name
|
|
(strings.replaceStrings [ "." ] [ "_" ] (versions.majorMinor version))
|
|
];
|
|
|
|
composedExtension = fixedPoints.composeManyExtensions (
|
|
[
|
|
(import ../development/cuda-modules/setup-hooks/extension.nix)
|
|
(callPackage ../development/cuda-modules/cuda/extension.nix { inherit cudaVersion; })
|
|
(import ../development/cuda-modules/cuda/overrides.nix)
|
|
(callPackage ../development/cuda-modules/generic-builders/multiplex.nix {
|
|
inherit cudaVersion flags mkVersionedPackageName;
|
|
pname = "cudnn";
|
|
releasesModule = ../development/cuda-modules/cudnn/releases.nix;
|
|
shimsFn = ../development/cuda-modules/cudnn/shims.nix;
|
|
fixupFn = ../development/cuda-modules/cudnn/fixup.nix;
|
|
})
|
|
(callPackage ../development/cuda-modules/cutensor/extension.nix {
|
|
inherit cudaVersion flags mkVersionedPackageName;
|
|
})
|
|
(callPackage ../development/cuda-modules/generic-builders/multiplex.nix {
|
|
inherit cudaVersion flags mkVersionedPackageName;
|
|
pname = "tensorrt";
|
|
releasesModule = ../development/cuda-modules/tensorrt/releases.nix;
|
|
shimsFn = ../development/cuda-modules/tensorrt/shims.nix;
|
|
fixupFn = ../development/cuda-modules/tensorrt/fixup.nix;
|
|
})
|
|
(callPackage ../development/cuda-modules/cuda-samples/extension.nix { inherit cudaVersion; })
|
|
(callPackage ../development/cuda-modules/cuda-library-samples/extension.nix { })
|
|
]
|
|
++ lib.optionals config.allowAliases [ (import ../development/cuda-modules/aliases.nix) ]
|
|
);
|
|
|
|
cudaPackages = customisation.makeScope newScope (
|
|
fixedPoints.extends composedExtension passthruFunction
|
|
);
|
|
in
|
|
cudaPackages // { inherit __attrsFailEvaluation; }
|