gromacsDouble{,Mpi}: explicitly disable CUDA support (incompatible with singlePrec) (#457398)
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
cpuAcceleration ? null,
|
||||
}:
|
||||
|
||||
# CUDA is only implemented for single precission
|
||||
# CUDA is only implemented for single precision
|
||||
assert enableCuda -> singlePrec;
|
||||
|
||||
let
|
||||
|
||||
@@ -13632,6 +13632,7 @@ with pkgs;
|
||||
gromacsDouble = lowPrio (
|
||||
gromacs.override {
|
||||
singlePrec = false;
|
||||
enableCuda = false; # CUDA is only implemented for single precision
|
||||
fftw = fftw;
|
||||
}
|
||||
);
|
||||
@@ -13639,6 +13640,7 @@ with pkgs;
|
||||
gromacsDoubleMpi = lowPrio (
|
||||
gromacs.override {
|
||||
singlePrec = false;
|
||||
enableCuda = false; # CUDA is only implemented for single precision
|
||||
enableMpi = true;
|
||||
fftw = fftw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user