paper-with-me

Papers

Pegasus: A Universal Framework for Scalable Deep Learning Inference on the Dataplane

2025-06-06 · Yinchao Zhang, Su Yao, Yong Feng, Kang Chen, Tong Li, Zhuotao Liu, Yi Zhao, Lexuan Zhang, Xiangyu Gao, Feng Xiong, Qi Li, Ke Xu

The paradigm of Intelligent DataPlane (IDP) embeds deep learning (DL) models on the network dataplane to enable intelligent traffic analysis at line-speed. However, the current use of the match-action table (MAT) abstraction on the dataplane is misaligned with DL inference, leading to several key limitations, including accuracy degradation, limited scale, and lack of generality. This paper proposes Pegasus to address these limitations. Pegasus translates DL operations into three dataplane-oriented primitives to achieve generality: Partition, Map, and SumReduce. Specifically, Partition "divides" high-dimensional features into multiple low-dimensional vectors, making them more suitable for the dataplane; Map "conquers" computations on the low-dimensional vectors in parallel with the technique of fuzzy matching, while SumReduce "combines" the computation results. Additionally, Pegasus employs Primitive Fusion to merge computations, improving scalability. Finally, Pegasus adopts full precision weights with fixed-point activations to improve accuracy. Our implementation on a P4 switch demonstrates that Pegasus can effectively support various types of DL models, including Multi-Layer Perceptron (MLP), Recurrent Neural Network (RNN), Convolutional Neural Network (CNN), and AutoEncoder models on the dataplane. Meanwhile, Pegasus outperforms state-of-the-art approaches with an average accuracy improvement of up to 22.8%, along with up to 248x larger model size and 212x larger input scale.

📄 PDF Abstract BibTeX arXiv:2506.05779

Code (0)

등록된 구현이 없습니다.

Methods 이 논문이 사용한 방법론

PEGASUS PEGASUS proposes a transformer-based model for abstractive summarization. It uses a special self-supervised pre-training objective called gap-sentences generation (GSG) that's…

Similar Papers 제목 키워드 기반

Chimera: Neuro-Symbolic Attention Primitives for Trustworthy Dataplane Intelligence

2026-02-13 · Rong Fu, Xiaowen Ma, Kun Liu, Wangyu Wu 외 arxiv

Deploying expressive learning models directly on programmable dataplanes promises line-rate, low-latency traffic analysis but remains hindered by strict hardware constraints and the need for predictable, auditable behavi…

PegasusFlow: Parallel Rolling-Denoising Score Sampling for Robot Diffusion Planner Flow Matching

2025-09-10 · Lei Ye, Haibo Gao, Peng Xu, Zhelin Zhang 외 arxiv

Diffusion models offer powerful generative capabilities for robot trajectory planning, yet their practical deployment on robots is hindered by a critical bottleneck: a reliance on imitation learning from expert demonstra…

Reinforcement LearningTrajectory Planning

From Passive Video to Editable Experience: Physically Grounded Experience Synthesis for Embodied Intelligence

2026-07-29 · Jia Luo arxiv

The key bottleneck in embodied AI is not model architecture but data. Although billions of human manipulation videos exist online, robots cannot directly learn from them due to the embodiment gap between human morphology…

Video Generation

Pegasus-v1 Technical Report

2024-04-23 · Raehyuk Jung, Hyojun Go, Jaehyuk Yi, Jiho Jang 외

This technical report introduces Pegasus-1, a multimodal language model specialized in video content understanding and interaction through natural language. Pegasus-1 is designed to address the unique challenges posed by…

Language ModelingLanguage ModellingQuestion AnsweringVideo Question Answering+1

Prose-to-P4: Leveraging High Level Languages

2024-06-19 · Mihai-Valentin Dumitru, Vlad-Andrei Bădoiu, Costin Raiciu

Languages such as P4 and NPL have enabled a wide and diverse range of networking applications that take advantage of programmable dataplanes. However, software development in these languages is difficult. To address this…

Code Generation