REVIEW 1 major objections 1 minor 53 references
Edge-cloud LLM inference cut latency by 46% and downlink data by 67% while keeping output quality near cloud-only.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 06:38 UTC pith:O2K4MTNO
load-bearing objection Solid systems engineering under an unsupported privacy framing; the paper is a latency optimization with honest disclaimers, not a privacy-preserving scheme. the 1 major comments →
Efficient and Privacy Aware Edge Cloud Collaborative Inference for Large Language Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper proposes an endpoint-authorized collaborative inference framework in which the user's device computes embeddings, a low-dimensional slice of the language-model head, speculative draft tokens, and final token sampling, while the cloud runs the decoder layers, maintains the KV cache under endpoint control, verifies draft tokens, and computes the high-dimensional slice of the vocabulary projection. By splitting the hidden state into a small endpoint portion (96 of 4096 dimensions) and a large cloud portion (4000 dimensions), the endpoint can fuse partial logits locally, apply language-adaptive vocabulary masking, and avoid transmitting the full 150,000-dimension logits vector during l
What carries the argument
The central mechanism is the distributed vocabulary projection: the LM head's weight matrix is split along the hidden dimension so that the endpoint computes z_end = h_end * W_end and the cloud computes z_cloud = h_cloud * W_cloud + b, then the endpoint sums them element-wise. This, combined with endpoint-owned KV-cache authorization (flagCache, LCache) and language-adaptive masking (only the subset of vocabulary dimensions V_l is transmitted), is what halves latency and shrinks downlink payloads.
Load-bearing premise
The load-bearing assumption is that keeping the LoRA-adapted local modules and cache-control decisions on the endpoint meaningfully reduces an honest-but-curious cloud's ability to reconstruct user input from the hidden states it is allowed to see, even though the paper does not measure this and concedes that strong adversaries may still extract information.
What would settle it
Run the cloud-side tensors (4000-dim hidden states, partial logits, language masks, and draft traces) through a representation-inversion attack such as Text Revealer on the same 7B model. If the attacker can reconstruct readable prompts from those tensors with acceptable quality, then the 'privacy-aware' claim collapses to a latency/bandwidth optimization.
If this is right
- If the framework is adopted, consumer devices with modest compute could run capable LLMs interactively, since the cloud takes over the heavy decoder work while the endpoint keeps local control.
- Language-restricted generation (e.g., Chinese-only or English-only) can cut cloud-to-device traffic by more than half, reducing bandwidth cost and perceived response time.
- Endpoint-local LoRA modules and KV-cache authorization provide a practical, non-cryptographic layer of privacy protection, though not a formal guarantee.
- The split-head design is compatible with quantization, ONNX Runtime, and various device profiles, suggesting it can be deployed on CPUs, GPUs, and embedded ARM devices.
- The framework's speculative decoding with cloud-side verification preserves the target model's generation quality while speeding up interactive dialogue.
Where Pith is reading between the lines
- The claimed privacy benefit is weaker than the title suggests: the cloud still receives 4000 of 4096 hidden-state dimensions, partial logits, language masks, and draft-token traces, and §8 concedes that hidden states can leak input information. A strong adversary with access to those tensors might reconstruct prompts using known inversion attacks, so the real contribution may be primarily efficien
- The latency gains depend on the prototype's 20 ms RTT and 100 Mbps bandwidth; real-world mobile networks with higher jitter or lower bandwidth could reduce the block-streaming benefit on CPU endpoints.
- A testable extension is to measure how much of the privacy benefit survives when the cloud uses a pretrained inversion model (like the cited Text Revealer) on the observed hidden states; the paper lists this as future work.
- The design could be extended to smaller models or larger vocabularies: the split head and language masking should generalize, but the optimal split dimension D_end may need re-tuning.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes an edge–cloud collaborative inference framework for LLMs in which the endpoint computes embeddings, controls KV-cache authorization, runs a lightweight local projection of the LM head, performs speculative decoding, and fuses partial logits, while the cloud executes the decoder layers and the high-dimensional part of the vocabulary projection. Communication is protected with AES-GCM, logits are clipped to language-specific vocabulary subsets, and endpoint-local LoRA/draft weights are kept on the device. The evaluation reports per-token latency reductions of up to 46.1% over a 'naive split inference' baseline and downlink payload reductions of up to 67.4% versus full-logits transfer, with next-token agreement of 98.6% relative to the full cloud model. The paper explicitly disclaims formal differential privacy or secure-computation guarantees and frames the privacy benefit as a practical exposure-reduction mechanism under an honest-but-curious cloud.
Significance. If the efficiency results are reproducible, the paper offers a useful systems contribution: the split vocabulary projection is exact by linearity, the ablation study in §7.7 gives sensible direction-of-effect results, and the latency/bandwidth measurements are concrete under a controlled network. The paper is also commendably explicit in §8 about what the design does not provide. However, the central 'privacy-aware' claim is not established. The cloud receives the token embedding h0 at the very first message, and the threat model grants the cloud access to decrypted feature tensors and the full model weights. Since the cloud has the token-embedding table, it can invert h0 into token indices by nearest-neighbor search, which would recover the prompt. The paper's own §8 lists inversion-attack evaluation as future work, but this is not a missing optional experiment: it is the core of the privacy claim. The paper therefore currently reduces to a latency/bandwidth optimization with a privacy-control interface, and the framing needs either a concrete privacy evaluation or a significant softening.
major comments (1)
- [§7.3, Tables 3–8] The evaluation is hard to assess without a named target model or released artifacts. §7.3 says the target model is 'instantiated as a 7B-class decoder-only Transformer' with hyperparameters chosen to match the split design, the vocabulary is 150k, and the endpoint processes 96 of 4096 dimensions. No model name, checkpoint, or code is provided. Latency and quality numbers for an unnamed model are not independently reproducible, and the claim that the model is 'instantiated' to match the design raises concern that the configuration was tuned to produce favorable results. Please identify an existing open-weight model (or release the model configuration and code) and report results on that fixed model.
minor comments (1)
- [§7.2, Table 3] The 'Endpoint-only lightweight' baseline is marked '–' on the CPU profile. A one-sentence explanation of why local-only inference is infeasible on that profile would help the reader interpret the comparison.
Circularity Check
No circularity: the split-logits identity is an exact decomposition used as an implementation, and the efficiency claims are measured outcomes.
full rationale
The paper's derivation chain is an engineering decomposition rather than a fitted result. Eqs. (10)-(13) split the LM-head projection by hidden dimension; z = z_end + z_cloud holds exactly by linearity, and the paper presents this as an implementation identity, not as an empirical prediction. Eqs. (14)-(15) are standard masked softmax, and the language-mode payload reduction is the measured accounting identity of Eq. (21), not a parameter fitted and re-predicted. Latency and throughput claims come from a controlled prototype (Tables 3-7), and the small quality degradation is checked externally on MMLU, GSM8K, and HumanEval (Table 8). The only by-construction element is the §7.2 definition of "naive split inference" without the components the framework adds, which makes some of the gain expected; this is a comparison-fairness caveat, not circular reasoning. §8 explicitly concedes the privacy limitation ("Hidden states can still carry information about the input, especially against strong adversaries with auxiliary knowledge or model access") and lists inversion-attack evaluation as future work; this is a correctness risk (the cloud receives h0 from Eq. (1)), not a circular step. No self-citation or imported uniqueness theorem is load-bearing. Therefore the derivation is self-contained and non-circular.
Axiom & Free-Parameter Ledger
free parameters (7)
- Endpoint split dimension Dend =
96 (sweep: 48-512)
- Speculative draft length N =
5 (GPU), 2 (edge)
- LoRA ranks =
4 (CPU), 8 (GPU)
- Language vocabulary fractions =
Chinese-only 40%, English-only 30% of V
- Quantization bit width b =
8 bits
- CPU streamed block count Nb =
4
- Evaluation network RTT/bandwidth =
20 ms / 100 Mbps
axioms (6)
- domain assumption Honest-but-curious cloud follows the protocol and does not collude with network attackers
- standard math Decoder-only Transformer forward pass with softmax attention is the correct generative model
- domain assumption Language identifier ℓ faithfully maps to a vocabulary subset Vℓ containing all tokens the target model would sample
- ad hoc to paper Keeping LoRA/draft weights on the endpoint materially raises the cost of reconstructing user content from cloud-visible tensors
- standard math AES-GCM with correctly managed keys and nonces protects the transport channel
- domain assumption INT8 quantization and endpoint-side head-split keep sampling approximately target-preserving
invented entities (1)
-
Endpoint-authorized cache-control tuple c = (flagCache, LCache, dtype, ℓ)
no independent evidence
read the original abstract
On-device LLM inference faces a trilemma of response latency, limited hardware resources and user privacy. Full cloud inference delivers strong computing power but exposes user prompts and dialogue data, while standalone on-device inference is unfeasible for most consumer and embedded edge devices. This paper presents a privacy-centric edge-cloud collaborative LLM inference framework built on endpoint-authenticated KV cache. Local endpoints handle input preprocessing, embedding computation, adaptive feature optimization, KV cache authentication, speculative decoding and low-dimensional model head calculation, while the cloud conducts authenticated decoder inference, KV cache management, token verification and high-dimensional vocabulary projection. Endpoints fuse partial outputs, apply language-adaptive masking and sample target tokens. All transmitted data and truncated logits are quantized and AES-GCM encrypted for privacy, with core lightweight modules, draft parameters and cache access policies kept local to avoid leakage. The framework supports heterogeneous devices including CPU-only, GPU-equipped and embedded devices via optimized streaming, batching and quantized ONNX deployment. Evaluations demonstrate that the framework reduces per-token latency by up to 46.1\% and downlink payloads by up to 67.4\% over baseline split inference, retaining comparable performance to full cloud inference.
Figures
Reference graph
Works this paper leans on
-
[1]
Gonzalez, Hao Zhang, and Ion Stoica
Woosuk Kwon, Zhuohan Li, Siyuan Zhuang, Ying Sheng, Lianmin Zheng, Cody Hao Yu, Joseph E. Gonzalez, Hao Zhang, and Ion Stoica. Efficient memory management for large language model serving with pagedattention. InProceedings of the ACM SIGOPS Symposium on Operating Systems Principles, 2023. 12 Efficient and Privacy-Aware Edge–Cloud LLM Inference
2023
-
[2]
Fu, Stefano Ermon, Atri Rudra, and Christopher Ré
Tri Dao, Daniel Y . Fu, Stefano Ermon, Atri Rudra, and Christopher Ré. Flashattention: Fast and memory-efficient exact attention with IO-awareness. InAdvances in Neural Information Processing Systems, 2022
2022
-
[3]
Flashattention-2: Faster attention with better parallelism and work partitioning
Tri Dao. Flashattention-2: Faster attention with better parallelism and work partitioning. InInternational Conference on Learning Representations, 2024
2024
-
[4]
ORCA: A distributed serving system for transformer-based generative models
Gyeong-In Yu, Jeongseok Jeong, Geon-Woo Kim, Soojeong Kim, and Byung-Gon Chun. ORCA: A distributed serving system for transformer-based generative models. InUSENIX Symposium on Operating Systems Design and Implementation, 2022
2022
-
[5]
DeepSpeed-Inference: Enabling efficient inference of transformer models at unprecedented scale
Reza Yazdani Aminabadi, Samyam Rajbhandari, Ammar Ahmad Awan, Cheng Li, Conglong Luo, Arash Elnawany, Shaden Smith, Minjia Zhang, Jeff Rasley, and Yuxiong He. DeepSpeed-Inference: Enabling efficient inference of transformer models at unprecedented scale. InInternational Conference for High Performance Computing, Networking, Storage and Analysis, 2022
2022
-
[6]
Neurosurgeon: Collaborative intelligence between the cloud and mobile edge
Yiping Kang, Johann Hauswald, Cao Gao, Austin Rovinski, Trevor Mudge, Jason Mars, and Lingjia Tang. Neurosurgeon: Collaborative intelligence between the cloud and mobile edge. InProceedings of the Twenty- Second International Conference on Architectural Support for Programming Languages and Operating Systems, 2017
2017
-
[7]
Split computing and early exiting for deep learning applications: Survey and research challenges.ACM Computing Surveys, 2022
Yoshitaka Matsubara, Marco Levorato, and Francesco Restuccia. Split computing and early exiting for deep learning applications: Survey and research challenges.ACM Computing Surveys, 2022
2022
-
[8]
DNN surgery: Accelerating DNN inference on the edge through layer partitioning.IEEE Transactions on Parallel and Distributed Systems, 2023
Hao Liang, Qiyang Sang, Chuan Hu, Dapeng Cheng, et al. DNN surgery: Accelerating DNN inference on the edge through layer partitioning.IEEE Transactions on Parallel and Distributed Systems, 2023
2023
-
[9]
Pipeedge: Pipeline parallelism for large-scale model inference on heterogeneous edge devices
Yinan Hu, Connor Imes, Xiaoang Zhao, Suhas Kundu, et al. Pipeedge: Pipeline parallelism for large-scale model inference on heterogeneous edge devices. InEuromicro Conference on Digital System Design / Software Engineering and Advanced Applications, 2022
2022
-
[10]
Hybrid SLM and LLM for edge-cloud collaborative inference
Zeyu Hao, Hao Jiang, Shaoxiang Jiang, Jiajun Ren, and Ting Cao. Hybrid SLM and LLM for edge-cloud collaborative inference. InACM MobiFoundation Workshop, 2024
2024
-
[11]
Jupiter: Fast and resource-efficient collaborative inference of generative LLMs on edge devices
Sen Ye, Bin Ouyang, Laizhong Zeng, Tian Qian, Xiangjie Chu, et al. Jupiter: Fast and resource-efficient collaborative inference of generative LLMs on edge devices. InIEEE INFOCOM, 2025
2025
-
[12]
Jiayi Ning, Chenning Zheng, and Tong Yang. DSSD: Efficient edge-device LLM deployment and collaborative inference via distributed split speculative decoding.arXiv preprint arXiv:2507.12000, 2025
Pith/arXiv arXiv 2025
-
[13]
CE-CoLLM: Efficient and adaptive large language models through cloud-edge collaboration
Haojie Jin and Yufei Wu. CE-CoLLM: Efficient and adaptive large language models through cloud-edge collaboration. InIEEE International Conference on Web Services, 2025
2025
-
[14]
Edgeshard: Efficient LLM inference via collaborative edge computing.IEEE Internet of Things Journal, 2024
Mingyuan Zhang, Xiang Shen, Jiannong Cao, Zhenyu Cui, et al. Edgeshard: Efficient LLM inference via collaborative edge computing.IEEE Internet of Things Journal, 2024
2024
-
[15]
Shuai Li, Hao Wang, Wenkang Xu, Rongxin Zhang, Song Guo, Jingdong Yuan, et al. Collaborative inference and learning between edge SLMs and cloud LLMs: A survey.arXiv preprint arXiv:2507.16731, 2025
Pith/arXiv arXiv 2025
-
[16]
Fast inference from transformers via speculative decoding
Yaniv Leviathan, Matan Kalman, and Yossi Matias. Fast inference from transformers via speculative decoding. In International Conference on Machine Learning, 2023
2023
-
[17]
Accelerating large language model decoding with speculative sampling, 2023
Charlie Chen, Sebastian Borgeaud, Geoffrey Irving, Jean-Baptiste Lespiau, Laurent Sifre, and John Jumper. Accelerating large language model decoding with speculative sampling, 2023
2023
-
[18]
Specinfer: Accelerating generative large language model serving with tree-based speculative inference and verification
Xupeng Miao, Gabriele Oliaro, Zhihao Zhang, Xinhao Cheng, Zeyu Wang, Rui Chen, and Zhihao Jia. Specinfer: Accelerating generative large language model serving with tree-based speculative inference and verification. In ACM SIGOPS Symposium on Operating Systems Principles, 2024
2024
-
[19]
Sequoia: Scalable, robust, and hardware-aware speculative decoding
Zhenyu Chen, Avner May, Roman Svirschevski, Yuhsiang Huang, Max Ryabinin, Zhihao Jia, and Beidi Chen. Sequoia: Scalable, robust, and hardware-aware speculative decoding. InAdvances in Neural Information Processing Systems, 2024
2024
-
[20]
Lee, Deming Chen, and Tri Dao
Tianle Cai, Yuhong Li, Zhengyang Geng, Hongwu Peng, Jason D. Lee, Deming Chen, and Tri Dao. Medusa: Simple LLM inference acceleration framework with multiple decoding heads. InInternational Conference on Machine Learning, 2024
2024
-
[21]
EAGLE-2: Faster inference of language models with dynamic draft trees
Yuhui Li, Fangyun Wei, Chao Zhang, and Hongyang Zhang. EAGLE-2: Faster inference of language models with dynamic draft trees. InConference on Empirical Methods in Natural Language Processing, 2024
2024
-
[22]
Break the sequential dependency of LLM inference using lookahead decoding.arXiv preprint, 2024
Yichao Fu, Peter Bailis, Ion Stoica, and Hao Zhang. Break the sequential dependency of LLM inference using lookahead decoding.arXiv preprint, 2024. 13 Efficient and Privacy-Aware Edge–Cloud LLM Inference
2024
-
[23]
Reddi, and Felix Yu
Yingqian Zhou, Kaifeng Lyu, Ankit Singh Rawat, Aditya Krishna Menon, Afshin Rostamizadeh, Sanjiv Kumar, Sashank J. Reddi, and Felix Yu. Distillspec: Improving speculative decoding via knowledge distillation. In International Conference on Learning Representations, 2024
2024
-
[24]
Layerskip: Enabling early exit inference and self-speculative decoding
Mostafa Elhoushi, Akshat Shrivastava, Diana Liskovich, Basil Hosmer, Bram Wasti, Liangzhen Lai, Anas Mahmoud, Bilge Acun, Saurabh Agarwal, Ahmed Roman, et al. Layerskip: Enabling early exit inference and self-speculative decoding. InAnnual Meeting of the Association for Computational Linguistics, 2024
2024
-
[25]
Draft & verify: Lossless large language model acceleration via self-speculative decoding
Jun Zhang, Jue Wang, Huan Li, Lidan Shou, Ke Chen, Gang Chen, and Sharad Mehrotra. Draft & verify: Lossless large language model acceleration via self-speculative decoding. InAnnual Meeting of the Association for Computational Linguistics, 2024
2024
-
[26]
Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen
Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models. InInternational Conference on Learning Representa- tions, 2022
2022
-
[27]
QLoRA: Efficient finetuning of quantized LLMs
Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. QLoRA: Efficient finetuning of quantized LLMs. InAdvances in Neural Information Processing Systems, 2023
2023
-
[28]
Zhiwei Lin, Xinyi Hu, Yifan Zhang, Zhenyu Chen, Zihao Fang, Xiang Chen, et al. Splitlora: A split parameter- efficient fine-tuning framework for large language models.arXiv preprint arXiv:2407.00952, 2024
Pith/arXiv arXiv 2024
-
[29]
Improving LoRA in privacy-preserving federated learning
Yansong Sun, Zhenyu Li, Yue Li, and Bolin Ding. Improving LoRA in privacy-preserving federated learning. arXiv preprint arXiv:2403.12313, 2024
Pith/arXiv arXiv 2024
-
[30]
On the implicit relation between low-rank adaptation and differential privacy
Shima Malekmohammadi and Golnoosh Farnadi. On the implicit relation between low-rank adaptation and differential privacy. InNeurIPS Workshop on Privacy in Machine Learning, 2024
2024
-
[31]
Is split learning privacy-preserving for fine-tuning large language models?IEEE Transactions on Big Data, 2024
Dongqi Yao and Bin Li. Is split learning privacy-preserving for fine-tuning large language models?IEEE Transactions on Big Data, 2024
2024
-
[32]
SLDP-LoRA: A privacy-preserving split learning framework with low-rank adaptation
Yicheng Huang, Jianlong Yin, Zihao Tan, Qiang Wang, et al. SLDP-LoRA: A privacy-preserving split learning framework with low-rank adaptation. InIEEE International Conference on Network Security and Engineering, 2025
2025
-
[33]
Pinghui Mai, Rui Yan, Zeyu Huang, Yifei Yang, and Yanmin Pang. Split-and-denoise: Protect large language model inference with local differential privacy.arXiv preprint arXiv:2310.09130, 2023
Pith/arXiv arXiv 2023
-
[34]
Santos, et al
Muslum Ugurbil, Dimitris Mouris, Miguel B. Santos, et al. Fission: Distributed privacy-preserving large language model inference. InIEEE European Symposium on Security and Privacy, 2025
2025
-
[35]
GPTQ: Accurate post-training quantization for generative pre-trained transformers
Elias Frantar, Saleh Ashkboos, Torsten Hoefler, and Dan Alistarh. GPTQ: Accurate post-training quantization for generative pre-trained transformers. InInternational Conference on Learning Representations, 2023
2023
-
[36]
AWQ: Activation-aware weight quantization for on-device LLM compression and acceleration
Ji Lin, Jiaming Tang, Haotian Tang, Shang Yang, Guanxiao Xiao, et al. AWQ: Activation-aware weight quantization for on-device LLM compression and acceleration. InConference on Machine Learning and Systems, 2024
2024
-
[37]
Smoothquant: Accurate and efficient post-training quantization for large language models
Guangxuan Xiao, Ji Lin, Mickaël Seznec, Hao Wu, Julien Demouth, and Song Han. Smoothquant: Accurate and efficient post-training quantization for large language models. InInternational Conference on Machine Learning, 2023
2023
-
[38]
A simple and effective pruning approach for large language models
Mingjie Sun, Zhiyuan Liu, Anna Bair, and Zico Kolter. A simple and effective pruning approach for large language models. InInternational Conference on Learning Representations, 2024
2024
-
[39]
Minillm: Knowledge distillation of large language models
Yuxian Gu, Li Dong, Furu Wei, and Minlie Huang. Minillm: Knowledge distillation of large language models. In International Conference on Learning Representations, 2024
2024
-
[40]
Efficient LLM inference on CPUs
Hao Shen, Hui Chang, Bo Dong, Yue Luo, and Hao Meng. Efficient LLM inference on CPUs. InEfficient Deep Learning: Methods, Systems, and Applications. Springer, 2025
2025
-
[41]
H2O: Heavy-hitter oracle for accurate KV cache compression
Zhenyu Zhang, Yao Sheng, Tianyi Jin, Chi Chen, Tianqi Liang, et al. H2O: Heavy-hitter oracle for accurate KV cache compression. InAdvances in Neural Information Processing Systems, 2023
2023
-
[42]
Streamingllm: Efficient streaming language models with attention sinks
Guangxuan Xiao, Yuandong Tian, Beidi Chen, Song Han, and Mike Lewis. Streamingllm: Efficient streaming language models with attention sinks. InInternational Conference on Learning Representations, 2024
2024
-
[43]
Recommendation for block cipher modes of operation: Ga- lois/counter mode (gcm) and gmac
National Institute of Standards and Technology. Recommendation for block cipher modes of operation: Ga- lois/counter mode (gcm) and gmac. NIST Special Publication 800-38D, 2007
2007
-
[44]
BOLT: Privacy-preserving, accurate and efficient inference for transformers
Qipeng Pang, Jingyi Zhu, Hendrik Möllering, Wenqiang Zheng, et al. BOLT: Privacy-preserving, accurate and efficient inference for transformers. InIEEE Symposium on Security and Privacy, 2024. 14 Efficient and Privacy-Aware Edge–Cloud LLM Inference
2024
-
[45]
THE-X: Privacy-preserving transformer inference with homomorphic encryption
Tianyu Chen, Hang Bao, Shaohan Huang, Li Dong, Binxing Jiao, et al. THE-X: Privacy-preserving transformer inference with homomorphic encryption. InFindings of the Association for Computational Linguistics, 2022
2022
-
[46]
Xing, et al
Dacheng Li, Rulin Shao, Hongyi Wang, Han Guo, Eric P. Xing, et al. MPCFormer: Fast, performant and private transformer inference with MPC.arXiv preprint, 2022
2022
-
[47]
Tashin Nayan, Zhenkai Zhang, and Ruizhe Sun. Secureinfer: Heterogeneous TEE-GPU architecture for privacy- critical LLM tensors.arXiv preprint arXiv:2510.19979, 2025
arXiv 2025
-
[48]
ONNX Runtime: Cross-platform, high performance machine learning inferencing and training accelerator.https://onnxruntime.ai/
Microsoft. ONNX Runtime: Cross-platform, high performance machine learning inferencing and training accelerator.https://onnxruntime.ai/. Accessed 2026
2026
-
[49]
Ruiyi Zhang, Shuichiro Hidano, and Farinaz Koushanfar. Text revealer: Private text reconstruction via model inversion attacks against transformers.arXiv preprint arXiv:2209.10505, 2022
Pith/arXiv arXiv 2022
-
[50]
ML-Doctor: Holistic risk assessment of inference attacks against machine learning models
Yugeng Liu, Rui Wen, Xiang He, Ahmed Salem, Zhikun Zhang, et al. ML-Doctor: Holistic risk assessment of inference attacks against machine learning models. InUSENIX Security Symposium, 2022
2022
-
[51]
Privacy side channels in machine learning systems
Edoardo Debenedetti, Giorgio Severi, Nicholas Carlini, et al. Privacy side channels in machine learning systems. InUSENIX Security Symposium, 2024
2024
-
[52]
Secure multi-party computation for machine learning: A survey.IEEE Communications Surveys & Tutorials, 2024
Irene Zhou, Farbod Tofigh, Massimo Piccardi, Mehran Abolhasan, et al. Secure multi-party computation for machine learning: A survey.IEEE Communications Surveys & Tutorials, 2024
2024
-
[53]
Min Du, Xiang Yue, Sherman S. M. Chow, Tianhao Wang, Chenguang Huang, et al. DP-Forward: Fine-tuning and inference on language models with differential privacy in forward pass. InACM SIGSAC Conference on Computer and Communications Security, 2023. 15
2023
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.