Search papers, labs, and topics across Lattice.
This paper investigates the practical challenges of distributed Transformer inference on NVIDIA Jetson Orin Nano devices connected via WiFi, revealing that CPU-GPU staging during communication is a major bottleneck due to the lack of PCIe/NVLink. To mitigate this, they propose Prism, an adaptive system that uses Segment Means compression and offline profiling to dynamically choose between local and distributed execution. Results show Prism reduces latency by 65%-77% and energy consumption by 34%-52% compared to static distributed execution.
Naive distributed inference on edge devices can be *slower* than local execution due to CPU-GPU communication bottlenecks, but a profiling-driven adaptive approach can flip the script for significant gains.
Distributing Transformer inference across embedded edge devices can alleviate individual memory and compute constraints, yet practical benefits on real hardware remain unclear: prior work relies largely on simulations that overlook hardware-specific communication overheads. We present a hardware prototype study on NVIDIA Jetson Orin Nano devices connected over WiFi. Our key finding is that the dominant bottleneck is not just network bandwidth but also the CPU-GPU staging during communication. Because Jetson's integrated GPU architecture lacks the PCIe/NVLink pathway that NCCL requires, all inter-device data communication should be routed through GLOO and staged in CPU memory; an overhead that scales with communication data volume and makes full-tensor exchange slower than single-device inference across the batch sizes for medium sized models such as ViT. We therefore evaluate Prism by combining Segment Means compression with lightweight offline profiling to adaptively select between local and distributed execution at runtime. Experiments show that this strategy reduces latency by 65%-77% and energy consumption by 34%-52% relative to full-tensor exchange in static distributed execution setup, demonstrating that profiling-driven adaptation is essential for practical distributed Transformer inference on embedded hardware.