From 064f5c5144052fc32ef483a8fe9144f6ba92d8d9 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 30 May 2023 09:07:12 +0200 Subject: [PATCH] Introduce pre_check(), Cleanup requirements.txt --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 035879c..300daab 100644 --- a/run.py +++ b/run.py @@ -52,7 +52,7 @@ def pre_check(): if 'ROCMExecutionProvider' not in core.globals.providers: if CUDA_VERSION > '11.8': quit(f"CUDA version {CUDA_VERSION} is not supported - please downgrade to 11.8.") - if CUDA_VERSION < '11.0': + if CUDA_VERSION < '11.4': quit(f"CUDA version {CUDA_VERSION} is not supported - please upgrade to 11.8.") if CUDNN_VERSION < 8220: quit(f"CUDNN version {CUDNN_VERSION} is not supported - please upgrade to 8.9.1")