*******> update.15 Author: S. Schott Verdugo, C. Pfleger Date: January 19,2021 Programs: configure2 Description: Fixed compilation typo with CUDA 11 and Ampere -------------------------------------------------------------------------------- AmberTools/src/configure2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git AmberTools/src/configure2 AmberTools/src/configure2 index dfe85ff917..4e8d96923c 100755 --- AmberTools/src/configure2 +++ AmberTools/src/configure2 @@ -1252,7 +1252,7 @@ if [ "$cuda" = 'yes' ]; then cudaversion=`$nvcc --version | grep 'release' | cut -d' ' -f5 | cut -d',' -f1` if [ "$cudaversion" = "11.0" -o "$cudaversion" = "11.1" ]; then # Implement the standard, not warp synchronous, compilation - sm80flags-'-gencode arch=compute_80,code=sm_80' + sm80flags='-gencode arch=compute_80,code=sm_80' sm75flags='-gencode arch=compute_75,code=sm_75' sm70flags='-gencode arch=compute_70,code=sm_70' echo "CUDA Version $cudaversion detected"