-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cuda: make cudatoolkit & cudnn packages overrideable #72826
Conversation
I'm interested in how you would now override stuff. Maybe a short example in the commit message? |
What I've done in a local repo today was: {
nixpkgs.overlays = [
(self: super: { inherit (super.callPackage (super.path + "/pkgs/…/cudatoolkit") {
addOpenGLRunpath = …;
}) cudatoolkit_10; })
];
} The probably ugliest part about this is that Instead of the above {
nixpkgs.overlays = [
(self: super: { inherit (super.cudatoolkitPackages.override {
addOpenGLRunpath = …;
}) cudatoolkit_10; })
];
} Ideally we would be able to override each package. That is something I will work on in the next days once the more pressuring work has been done. |
This has the benefit of being able to override all the inputs to the build where you were previously only able to override the entire package set (if at all).
@knedlsepp I did the overridable changes for cudaPackages. Does that look good to you? I am going to do the same for cudnn as soon as you confirm that it is okay-ish :) |
That's useful! LGTM |
Looking at cudnn it actually looks fine already. I am merging this in as it. |
Getting a build error
|
Just saw that also. All the conditionals on the cuda-version were removed from the common.nix file. I'm sorry that I didn't review this PR before. |
Thanks. I am sorry. I just pushed a revert: 464ff0a Will look into the issue now and open another PR. |
Looks like I lost a few changes during the rebase. I have an updated branch and will open a PR once the local builds are successful. |
Thank you! 👍 |
Motivation for this change
I currently need to override some aspects of a specific cudatoolkit and cudnn packages. The current mechanism doesn't allow overriding any of the dependencies. By adding a
cudaPackages
andcudnnPackages
attribute we are at least able to override the inputs of those packages and pick packages from the resulting attribute set as needed.Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)