gromacsDouble{,Mpi}: explicitly disable CUDA support (incompatible with singlePrec)

This commit is contained in:
Gaetan Lepage
2025-11-01 00:30:02 +00:00
parent 7d80ac517e
commit 2e0ae49ba1
2 changed files with 3 additions and 1 deletions

View File

@@ -20,7 +20,7 @@
cpuAcceleration ? null,
}:
# CUDA is only implemented for single precission
# CUDA is only implemented for single precision
assert enableCuda -> singlePrec;
let

View File

@@ -13644,6 +13644,7 @@ with pkgs;
gromacsDouble = lowPrio (
gromacs.override {
singlePrec = false;
enableCuda = false; # CUDA is only implemented for single precision
fftw = fftw;
}
);
@@ -13651,6 +13652,7 @@ with pkgs;
gromacsDoubleMpi = lowPrio (
gromacs.override {
singlePrec = false;
enableCuda = false; # CUDA is only implemented for single precision
enableMpi = true;
fftw = fftw;
}