From c331bdbba82236319b0f98ebea2c2e812bc2cd94 Mon Sep 17 00:00:00 2001 From: K4YT3X Date: Tue, 12 Mar 2019 10:40:29 -0400 Subject: [PATCH] fixed a typo --- bin/video2x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/video2x.py b/bin/video2x.py index 3941c5a..62c8aa6 100755 --- a/bin/video2x.py +++ b/bin/video2x.py @@ -105,7 +105,7 @@ def check_memory(): if not os.path.isfile('C:\\Program Files\\NVIDIA Corporation\\NVSMI\\nvidia-smi.exe'): # Nvidia System Management Interface not available Avalon.warning('Nvidia-smi not available, skipping available memory check') - Avalon.warning('If you experience error \"cudaSuccess out of memory, try reducing number of threads you\'re using\"') + Avalon.warning('If you experience error \"cudaSuccess out of memory\", try reducing number of threads you\'re using') else: # "0" is GPU ID. Both waifu2x drivers use the first GPU available, therefore only 0 makes sense gpu_memory_available = (GPUtil.getGPUs()[0].memoryTotal - GPUtil.getGPUs()[0].memoryUsed) / 1024