You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I encountered CUDA OOM when training DM05 on 8 × NVIDIA GeForce RTX 4090D (24 GB) in both VLA Arena and RoboTwin.
VLA Arena:
The error occurs during FSDP initialization before the first training step: accelerator.prepare(self.model) → FSDP(model) → handle.shard() → shard = chunk.clone()
torch.OutOfMemoryError: CUDA out of memory.
Tried to allocate 1.36 GiB.
GPU 0 has a total capacity of 23.65 GiB of which 1.36 GiB is free.
Process has 22.29 GiB memory in use.
Of the allocated memory 21.73 GiB is allocated by PyTorch.
RoboTwin:
I encountered almost exactly the same CUDA OOM during training:
torch.OutOfMemoryError: CUDA out of memory.
Tried to allocate 1.36 GiB.
GPU 7 has a total capacity of 23.65 GiB of which 1.36 GiB is free.
Process 282836 has 22.29 GiB memory in use.
Of the allocated memory 21.73 GiB is allocated by PyTorch.
Hi, I encountered CUDA OOM when training DM05 on 8 × NVIDIA GeForce RTX 4090D (24 GB) in both VLA Arena and RoboTwin.
VLA Arena:
The error occurs during FSDP initialization before the first training step:
accelerator.prepare(self.model) → FSDP(model) → handle.shard() → shard = chunk.clone()RoboTwin:
I encountered almost exactly the same CUDA OOM during training: