From 49e3ee70b6bd8a20dc701dca6744160219f9cd98 Mon Sep 17 00:00:00 2001 From: antonio <47569261+antferdom@users.noreply.github.com> Date: Mon, 12 Jun 2023 13:05:10 +0200 Subject: [PATCH] (TYPO): CUDA_VISIBLE_DEVICES comment --- launcher/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/main.rs b/launcher/src/main.rs index f59ff685..36f6f6b6 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -60,8 +60,8 @@ struct Args { sharded: Option, /// The number of shards to use if you don't want to use all GPUs on a given machine. - /// You can use `CUDA_VISIBLE_DEVICE=0,1 text-generation-launcher... --num_shard 2` - /// and `CUDA_VISIBLE_DEVICE=2,3 text-generation-launcher... --num_shard 2` to + /// You can use `CUDA_VISIBLE_DEVICES=0,1 text-generation-launcher... --num_shard 2` + /// and `CUDA_VISIBLE_DEVICES=2,3 text-generation-launcher... --num_shard 2` to /// launch 2 copies with 2 shard each on a given machine with 4 GPUs for instance. #[clap(long, env)] num_shard: Option,