From 5edce3798b04cebb1d2e0e6d33aece6fa7103d79 Mon Sep 17 00:00:00 2001 From: David <8304331+kadrim@users.noreply.github.com> Date: Sat, 23 Nov 2019 15:36:10 +0100 Subject: [PATCH] Update Extractor.py increased no_response_time_sec, fixes issues with AMD GPUs --- mainscripts/Extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainscripts/Extractor.py b/mainscripts/Extractor.py index 1b146bf..76ac98b 100644 --- a/mainscripts/Extractor.py +++ b/mainscripts/Extractor.py @@ -308,7 +308,7 @@ class ExtractSubprocessor(Subprocessor): self.devices = ExtractSubprocessor.get_devices_for_config(self.manual, self.type, multi_gpu, cpu_only) - no_response_time_sec = 60 if not self.manual and not DEBUG else 999999 + no_response_time_sec = 600 if not self.manual and not DEBUG else 999999 super().__init__('Extractor', ExtractSubprocessor.Cli, no_response_time_sec, initialize_subprocesses_in_serial=(type != 'final'))