Skip to content

Multi-GPU Support Assistance #553

Closed Answered by merlinND
helman44 asked this question in Q&A
Discussion options

You must be logged in to vote

Hello @helman44,

Unfortunately, the ray tracing part of Sionna does not support multi-GPU due to missing support in Mitsuba (the underlying library used for ray tracing, which itself uses OptiX).
The easiest way would be to start your script twice and split the work over e.g. depths, CPI_LENGTH, or any other dimension that makes sense for your problem.
Something to the effect of:

CUDA_VISIBLE_DEVICES=0 python ./run.py --depths 0 1 2 3 4 5 6

# In another terminal
CUDA_VISIBLE_DEVICES=1 python ./run.py --depths 7 8 9

and then aggregate the results.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@helman44
Comment options

Answer selected by merlinND
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants