Re: [AMBER] Unsupported Cuda Version on Amber 20 Installation

From: David A Case <david.case.rutgers.edu>
Date: Wed, 18 Nov 2020 09:30:05 -0500

On Wed, Nov 18, 2020, Setyanto Md wrote:

>Error: Unsupported CUDA version 11.1 detected.
> Amber requires CUDA version 7.5, 8.0, 9.0-9.2, or 10.0-10.2

If you are using the "legacy" configure option (which we no longer
recommend), do this:

Edit line 1253 in AmberTools/src/configure2 from this:

    if [ "$cudaversion" = "11.0" ]; then

to this:

    if [ "$cudaversion" = "11.0" -o "$cudaversion" = "11.1" ]; then

If you are configuring with cmake, do this:

Edit line 67 of cmake/CudaConfig.cmake from this:

    elseif(${CUDA_VERSION} VERSION_EQUAL 11.0)

to this:

    elseif(${CUDA_VERSION} VERSION_GREATER_EQUAL 11.0)

...good luck....dac

[Scott (Brozell): do you have time to make an update for this?...thx]

_______________________________________________
AMBER mailing list
AMBER.ambermd.org
http://lists.ambermd.org/mailman/listinfo/amber
Received on Wed Nov 18 2020 - 07:00:02 PST
Custom Search