From 1375d5599eae74f65484246e5a4142e8abf78b39 Mon Sep 17 00:00:00 2001 From: clore Date: Tue, 29 Oct 2024 10:00:25 +0000 Subject: [PATCH] allow mixed GPU on machine initialization --- lib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.py b/lib/config.py index f163b67..655fe0d 100644 --- a/lib/config.py +++ b/lib/config.py @@ -33,7 +33,7 @@ hard_config = { "maximum_service_loop_time": 900, # Seconds, failsafe variable - if service is stuck processing longer than this timeframe it will lead into restarting the app "maximum_pull_service_loop_time": 14400, # Exception for image pulling "creation_engine": "wrapper", # "wrapper" or "sdk" | Wrapper - wrapped docker cli, SDK - docker sdk - "allow_mixed_gpus": False + "allow_mixed_gpus": True } parser = argparse.ArgumentParser(description='Example argparse usage')