diff options
author | Olexa Bilaniuk <obilaniu@gmail.com> | 2021-02-15 00:55:22 -0500 |
---|---|---|
committer | Olexa Bilaniuk <obilaniu@gmail.com> | 2021-02-16 14:46:17 -0500 |
commit | 8b784e7008d4143f22f56d32290eb909d9fa5904 (patch) | |
tree | 164b444f872e213035ec3c6b08a24bc949c7149b /mesonbuild/modules | |
parent | f3727c62c6c8e05c4b05f5f547f7b757f69b65ea (diff) | |
download | meson-8b784e7008d4143f22f56d32290eb909d9fa5904.zip meson-8b784e7008d4143f22f56d32290eb909d9fa5904.tar.gz meson-8b784e7008d4143f22f56d32290eb909d9fa5904.tar.bz2 |
CUDA Toolkit 11.2.1 has been released, update version table
Strangely, the minimum version of CUDA Toolkit 11.2.0 has also been
updated - downwards. We pick up this change as well.
Diffstat (limited to 'mesonbuild/modules')
-rw-r--r-- | mesonbuild/modules/unstable_cuda.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/modules/unstable_cuda.py b/mesonbuild/modules/unstable_cuda.py index 0a5f031..33df0bd 100644 --- a/mesonbuild/modules/unstable_cuda.py +++ b/mesonbuild/modules/unstable_cuda.py @@ -43,7 +43,8 @@ class CudaModule(ExtensionModule): cuda_version = args[0] driver_version_table = [ - {'cuda_version': '>=11.2.0', 'windows': '460.89', 'linux': '460.27.04'}, + {'cuda_version': '>=11.2.1', 'windows': '461.09', 'linux': '460.32.03'}, + {'cuda_version': '>=11.2.0', 'windows': '460.82', 'linux': '460.27.03'}, {'cuda_version': '>=11.1.1', 'windows': '456.81', 'linux': '455.32'}, {'cuda_version': '>=11.1.0', 'windows': '456.38', 'linux': '455.23'}, {'cuda_version': '>=11.0.3', 'windows': '451.82', 'linux': '450.51.06'}, |