179 questions
No questions match those filters.
You have a 4,096-GPU budget. Walk me through your parallelism assignment.
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansFor a 4,096-GPU budget, the assignment strategy begins by setting tensor parallelism to t=8 within each NVSwitch node. Next, assess if the 512 nodes fit into a single non-oversubscribed fabric; if not, implement pipeline parallelism across racks with sufficient microbatches to keep the bubble fraction below 5%. Finally, fill the remaining capacity with data parallelism up to the batch size limit. If the InfiniBand fabric is 4:1 oversubscribed at the spine, effective cross-rack bandwidth drops to 25%. In this case, increase the pipeline microbatch count to maintain an acceptable bubble fraction and reduce the data-parallel node count to decrease spine traffic, or consider model sharding via ZeRO stage 3 to consolidate the run.