python3Packages.torchWithRocm: ignore config.cudaSupport

This commit is contained in:
Someone Serge 2023-03-21 16:30:06 +02:00
parent a9faf1b9ef
commit 0f76efb481
No known key found for this signature in database
GPG Key ID: 7B0E3B1390D61DA4

View File

@ -11856,6 +11856,7 @@ self: super: with self; {
torchWithCuda = self.torch.override {
magma = pkgs.magma-cuda;
cudaSupport = true;
rocmSupport = false;
};
torchWithoutCuda = self.torch.override {
@ -11865,6 +11866,7 @@ self: super: with self; {
torchWithRocm = self.torch.override {
magma = pkgs.magma-hip;
rocmSupport = true;
cudaSupport = false;
};
torchWithoutRocm = self.torch.override {