mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
python3Packages.torchWithRocm: ignore config.cudaSupport
This commit is contained in:
parent
a9faf1b9ef
commit
0f76efb481
@ -11856,6 +11856,7 @@ self: super: with self; {
|
|||||||
torchWithCuda = self.torch.override {
|
torchWithCuda = self.torch.override {
|
||||||
magma = pkgs.magma-cuda;
|
magma = pkgs.magma-cuda;
|
||||||
cudaSupport = true;
|
cudaSupport = true;
|
||||||
|
rocmSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
torchWithoutCuda = self.torch.override {
|
torchWithoutCuda = self.torch.override {
|
||||||
@ -11865,6 +11866,7 @@ self: super: with self; {
|
|||||||
torchWithRocm = self.torch.override {
|
torchWithRocm = self.torch.override {
|
||||||
magma = pkgs.magma-hip;
|
magma = pkgs.magma-hip;
|
||||||
rocmSupport = true;
|
rocmSupport = true;
|
||||||
|
cudaSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
torchWithoutRocm = self.torch.override {
|
torchWithoutRocm = self.torch.override {
|
||||||
|
Loading…
Reference in New Issue
Block a user