Multiple GPU Utilization #75
Answered
by
neonbjb
ben-barnard
asked this question in
Q&A
-
Hello! I've been having a blast with your project and really learning a lot. Quick question (and apologies if it's obvious) - can this code take advantage of multiple GPU setups? I have a couple 1070tis sitting idle. Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
neonbjb
May 28, 2022
Replies: 1 comment 1 reply
-
You can run multiple scripts in parallel by setting the CUDA_VISIBLE_DEVICES environment variable, so for example |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ben-barnard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can run multiple scripts in parallel by setting the CUDA_VISIBLE_DEVICES environment variable, so for example
CUDA_VISIBLE_DEVICES=1 python do_tts.py
will run do_tts on the 2nd GPU.