From c56e1f0ae435f0c08bed09a15a8beb9eb66fd171 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 19 Oct 2020 17:43:58 +0100 Subject: [PATCH] Don't enumerate GPUs in child process helper --- util/test/rdtest/runner.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util/test/rdtest/runner.py b/util/test/rdtest/runner.py index f5a3ccbf5..b521bb298 100644 --- a/util/test/rdtest/runner.py +++ b/util/test/rdtest/runner.py @@ -418,7 +418,9 @@ def internal_run_test(test_name): for testclass in testcases: if testclass.__name__ == test_name: - rd.InitialiseReplay(rd.GlobalEnvironment(), []) + globalenv = rd.GlobalEnvironment() + globalenv.enumerateGPUs = False + rd.InitialiseReplay(globalenv, []) log.begin_test(test_name, print_header=False)