From f866d436937949c75782ae601167ea8a98c68e71 Mon Sep 17 00:00:00 2001 From: revital Date: Sun, 28 Jul 2024 09:22:44 +0300 Subject: [PATCH] Add --order-fairness info --- clearml_agent/interface/worker.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/clearml_agent/interface/worker.py b/clearml_agent/interface/worker.py index 8c32ff2..6204d8c 100644 --- a/clearml_agent/interface/worker.py +++ b/clearml_agent/interface/worker.py @@ -69,7 +69,8 @@ DAEMON_ARGS = dict({ '--queue': { 'help': 'Queue ID(s)/Name(s) to pull tasks from (\'default\' queue).' ' Note that the queue list order determines priority, with the first listed queue having the' - ' highest priority', + ' highest priority. To change this behavior, use --order-fairness to pull from each queue in a' + ' round-robin order', 'nargs': '+', 'default': tuple(), 'dest': 'queues', @@ -117,7 +118,8 @@ DAEMON_ARGS = dict({ ' Example: \'--dynamic-gpus --gpus 0-3 --queue dual_gpus=2 single_gpu=1\'.' ' Example Opportunistic: \'--dynamic-gpus --gpus 0-3 --queue dual_gpus=2 max_quad_gpus=1-4\'.' ' Note that the queue list order determines priority, with the first listed queue having the' - ' highest priority', + ' highest priority. To change this behavior, use --order-fairness to pull from each queue in a' + ' round-robin order', 'action': 'store_true', }, '--uptime': {