mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-06-06 01:12:06 +00:00
feat(launcher): Pass CUDA_VISIBLE_DEVICES to the shard
This commit is contained in:
parent
427d7cc444
commit
cea6051eff
@ -306,6 +306,14 @@ fn shard_manager(
|
||||
));
|
||||
};
|
||||
|
||||
// If the CUDA_VISIBLE_DEVICES env var is set, pass it to the shard
|
||||
if let Ok(cuda_visible_devices) = env::var("CUDA_VISIBLE_DEVICES") {
|
||||
env.push((
|
||||
"CUDA_VISIBLE_DEVICES".parse().unwrap(),
|
||||
cuda_visible_devices.parse().unwrap(),
|
||||
));
|
||||
};
|
||||
|
||||
// Start process
|
||||
tracing::info!("Starting shard {}", rank);
|
||||
let mut p = match Popen::create(
|
||||
|
Loading…
Reference in New Issue
Block a user