content updates, various fixes

This commit is contained in:
khannurien
2026-04-26 12:57:40 +00:00
parent 8484abea47
commit 1a9f822b56
164 changed files with 82726 additions and 163 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,108 @@
venue: ATC
year: 2024
papers:
- title: 'FetchBPF: Customizable Prefetching Policies in Linux with eBPF'
authors:
- Xuechun Cao
- Shaurya Patel
- Soo-Yee Lim
- Xueyuan Han
- Thomas Pasquier
reason: "Extends eBPF into the page-fault / prefetch path, giving user-space programs a safe, low-overhead hook to install custom hardware-prefetch policies without kernel modifications."
- title: Fast (Trapless) Kernel Probes Everywhere
authors:
- Jinghao Jia
- Michael V. Le
- Salman Ahmed 0001
- Dan Williams 0001
- Hani Jamjoom
- Tianyin Xu
reason: "Eliminates the trap-based overhead of kprobes by using binary rewriting to instrument kernel functions at near-zero cost, enabling always-on production tracing."
- title: 'FBMM: Making Memory Management Extensible With Filesystems'
authors:
- Bijan Tabatabai
- James Christopher Sorenson III
- Michael M. Swift
reason: "Proposes delegating Linux virtual-memory management to filesystem drivers via a clean abstraction layer, opening the OS memory subsystem to the same extensibility that filesystems enjoy."
- title: Limitations and Opportunities of Modern Hardware Isolation Mechanisms
authors:
- Xiangdong Chen
- Zhaofeng Li 0004
- Tirth Jain
- Vikram Narayanan
- Anton Burtsev
reason: "Empirically evaluates Intel MPK, RISC-V sPMP, and related primitives and shows that their performance and safety properties diverge sharply from vendor claims, motivating a fresh look at hardware-assisted compartmentalization."
- title: 'FastCommit: resource-efficient, performant and cost-effective file system journaling'
authors:
- Harshad Shirwadkar
- Saurabh Kadekodi
- Theodore Y. Ts'o
reason: "Redesigns ext4 journal commits to write only changed metadata deltas rather than full blocks, slashing journaling overhead while preserving crash consistency — and is already deployed in the Linux kernel."
- title: 'ZMS: Zone Abstraction for Mobile Flash Storage'
authors:
- Joo Young Hwang
- Seokhwan Kim
- Daejun Park 0002
- Yong-Gil Song
- Junyoung Han
- Seunghyun Choi
- Sangyeun Cho
- Youjip Won
reason: "Introduces a zone-based abstraction that exposes the append-only write semantics of mobile UFS flash to the OS, cutting write amplification and GC overhead by an order of magnitude on mobile workloads."
- title: 'Ethane: An Asymmetric File System for Disaggregated Persistent Memory'
authors:
- Miao Cai 0001
- Junru Shen
- Baoliu Ye
reason: "Proposes a split-path file system design where reads bypass the server entirely and writes use lightweight logging, achieving near-DRAM read latency on disaggregated persistent memory."
- title: 'StreamCache: Revisiting Page Cache for File Scanning on Fast Storage Devices'
authors:
- Zhiyue Li
- Guangyan Zhang
reason: "Demonstrates that the Linux page cache becomes a bottleneck — not a benefit — for sequential scans on NVMe SSDs, and replaces it with a lightweight streaming buffer that halves latency for analytical workloads."
- title: 'PeRF: Preemption-enabled RDMA Framework'
authors:
- Sugi Lee
- Mingyu Choi
- Ikjun Yeom
- Younghoon Kim
reason: "Adds fine-grained preemption to RDMA by intercepting work-queue operations at the NIC driver level, enabling priority isolation for latency-sensitive RPC traffic sharing a fabric with bulk transfers."
- title: 'OSMOSIS: Enabling Multi-Tenancy in Datacenter SmartNICs'
authors:
- Mikhail Khalilov
- Marcin Chrapek
- Siyuan Shen
- Alessandro Vezzu
- Thomas Benz
- Salvatore Di Girolamo
- Timo Schneider
- Daniele De Sensi
- Luca Benini
- Torsten Hoefler
reason: "Designs an OS-like resource manager for SmartNIC compute and memory that enforces tenant isolation and QoS, showing that shared-SmartNIC deployments are practical without sacrificing performance."
- title: 'mmTLS: Scaling the Performance of Encrypted Network Traffic Inspection'
authors:
- Junghan Yoon
- Seunghyun Do
- Duckwoo Kim
- Taejoong Chung
- KyoungSoo Park
reason: "Splits TLS session state across multiple cores using a novel sharding scheme, removing the per-connection serialization bottleneck in middlebox TLS inspection and achieving near-linear multi-core scaling."
- title: 'UniMem: Redesigning Disaggregated Memory within A Unified Local-Remote Memory Hierarchy'
authors:
- Yijie Zhong
- Minqiang Zhou
- Zhirong Shen
- Jiwu Shu
reason: "Collapses the local/remote memory distinction into a single unified hierarchy with a new page-placement runtime, achieving transparent memory disaggregation with significantly lower tail latency than prior CXL-based approaches."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,70 @@
venue: ATC
year: 2025
date: "2025-07-09"
tags: [operating-systems, cloud, storage, networking]
selected:
- dblp_key: "conf/usenix/PengTZLCJXWXZLY25"
title: "ASTERINAS: A Linux ABI-Compatible, Rust-Based Framekernel OS with a Small and Sound TCB"
tldr: "A production-grade OS kernel written in Rust that exposes a full Linux ABI while confining unsafe code to a small, formally-audited framekernel core."
why_notable: "ASTERINAS demonstrates that Linux compatibility and memory-safety guarantees are not mutually exclusive — unsafe Rust is isolated to under 5 kloc of framework code, giving systems operators a credible path toward a safer Linux-compatible kernel without sacrificing application portability."
- dblp_key: "conf/usenix/JiaQCLBPLFJX025"
title: "Rex: Closing the language-verifier gap with safe and usable kernel extensions"
tldr: "Rex introduces a new kernel-extension framework that replaces eBPF's in-kernel verifier with a Rust-typed, LLVM-based toolchain to safely express programs that eBPF currently rejects."
why_notable: "The eBPF verifier's conservatism silently limits what practitioners can implement; Rex shows how a language-level safety guarantee can replace ad-hoc bytecode verification without changing the kernel ABI, opening the door to far richer kernel extensions."
- dblp_key: "conf/usenix/YelamWGYSXNSK25"
title: "PageFlex: Flexible and Efficient User-space Delegation of Linux Paging Policies with eBPF"
tldr: "PageFlex lets applications plug in custom page-replacement and allocation policies via eBPF hooks without modifying the kernel, achieving performance competitive with kernel-native policies."
why_notable: "Memory management policy has historically been locked inside the kernel; PageFlex's eBPF delegation mechanism gives cloud operators a principled way to tailor paging behavior per workload, directly addressing the one-size-fits-all limitation of the Linux page allocator."
- dblp_key: "conf/usenix/ChenW0X025"
title: "μEFI: A Microkernel-Style UEFI with Isolation and Transparency"
tldr: "μEFI restructures UEFI firmware around microkernel principles so that individual UEFI drivers are isolated from each other and from the boot-time trusted computing base."
why_notable: "Firmware vulnerabilities are notoriously hard to patch and can persist through OS reinstalls; μEFI's approach substantially reduces the blast radius of a compromised UEFI driver while remaining compatible with existing UEFI software, making it directly relevant to secure-boot infrastructure."
- dblp_key: "conf/usenix/Hwang0KES25"
title: "Z-LFS: A Zoned Namespace-tailored Log-structured File System for Commodity Small-zone ZNS SSDs"
tldr: "Z-LFS is an LFS designed around the tight zone-size constraints of commodity ZNS SSDs, using fine-grained segment management and zone-aware garbage collection to avoid the capacity and write-amplification pitfalls of existing approaches."
why_notable: "ZNS SSDs offer significant cost and endurance advantages but mainstream file systems waste capacity on small-zone devices; Z-LFS shows that rethinking LFS segment layout specifically for small zones yields competitive throughput with substantially lower write amplification."
- dblp_key: "conf/usenix/DuanC25"
title: "Crash Consistency in Block-Level Caching Systems: An Open CAS Case Study"
tldr: "A systematic study of crash-consistency bugs in the widely deployed Open CAS block-layer cache, revealing a class of ordering violations that can silently corrupt data on unexpected power loss."
why_notable: "Block-level caches are invisible to file systems and often assumed to be transparent, making these bugs particularly insidious; the paper's taxonomy and detection methodology are directly actionable for operators running NVMe caching in production storage stacks."
- dblp_key: "conf/usenix/QiuYGZ25"
title: "HotRAP: Hot Record Retention and Promotion for LSM-trees with Tiered Storage"
tldr: "HotRAP adds a retention-and-promotion layer to LSM-tree compaction that keeps frequently accessed records in faster storage tiers by tracking access heat across compaction boundaries."
why_notable: "Tiered storage deployments with LSM engines (RocksDB, LevelDB) routinely see hot data demoted to slow tiers during compaction; HotRAP's lightweight heat tracking improves read latency by up to 5x on skewed workloads without changing the external LSM API."
- dblp_key: "conf/usenix/00090ZSXWE0ZYX25"
title: "TGW: Operating an Efficient and Resilient Cloud Gateway at Scale"
tldr: "TGW describes the architecture, traffic engineering, and operational lessons of a production cloud gateway handling hundreds of Tbps at a major cloud provider."
why_notable: "Production-scale gateway papers with real traffic data are rare; TGW's account of how to sustain sub-millisecond failover and linear-scale throughput under adversarial traffic patterns provides a concrete reference design for anyone building or operating large-scale edge infrastructure."
- dblp_key: "conf/usenix/Huang0CSQW25"
title: "SwCC: Software-Programmable and Per-Packet Congestion Control in RDMA Engine"
tldr: "SwCC embeds a programmable per-packet congestion-control engine directly inside an RDMA NIC, allowing operators to deploy and hot-swap CC algorithms without CPU involvement or ASIC redesign."
why_notable: "RDMA congestion control has historically been frozen in NIC firmware, forcing cluster-wide firmware upgrades to try new algorithms; SwCC's programmable datapath brings the velocity of software-defined networking to the RDMA layer at near-line-rate performance."
- dblp_key: "conf/usenix/AwamotoH25"
title: "Opening Up Kernel-Bypass TCP Stacks"
tldr: "A framework that exposes kernel-bypass TCP (DPDK-based) stacks to unmodified POSIX applications by transparently interposing at the syscall level, without requiring application changes or root privileges."
why_notable: "Kernel-bypass networking has been limited to purpose-built applications; this work's zero-modification deployment model makes microsecond-latency TCP accessible to the broad ecosystem of existing networked software, which has significant practical implications for latency-sensitive cloud services."
- dblp_key: "conf/usenix/ZurKBS25"
title: "Accelerating Nested Virtualization with HyperTurtle"
tldr: "HyperTurtle reduces the performance penalty of nested virtualization by selectively forwarding L2 guest hypercalls directly to the L0 hypervisor, bypassing the L1 intermediary for common fast paths."
why_notable: "Nested virtualization is increasingly important for confidential computing and cloud-in-cloud deployments, but the overhead is often prohibitive; HyperTurtle's selective bypass approach cuts nested VM overhead by up to 60% on I/O-intensive workloads with no guest modifications."
- dblp_key: "conf/usenix/WangHWSZF0Y025"
title: "KVCache Cache in the Wild: Characterizing and Optimizing KVCache Cache at a Large Cloud Provider"
tldr: "A production measurement study of LLM KV-cache behavior across a large cloud fleet, revealing access patterns and reuse characteristics that inform a redesigned caching policy reducing GPU memory pressure significantly."
why_notable: "As LLM serving becomes a dominant cloud workload, KV-cache management is a critical bottleneck; this paper provides the first at-scale empirical characterization of KV-cache reuse in a real deployment, and its findings directly shaped policy changes that improved cache hit rates by over 30%."
- dblp_key: "conf/usenix/Wu0YYWDYWQZ25"
title: "GREYHOUND: Hunting Fail-Slows in Hybrid-Parallel Training at Scale"
tldr: "GREYHOUND is a runtime monitoring system that automatically detects and isolates fail-slow stragglers in large-scale hybrid-parallel LLM training jobs before they degrade the entire training run."
why_notable: "Fail-slow faults are notoriously harder to detect than fail-stop failures and can silently extend training jobs by hours; GREYHOUND's production deployment demonstrates that fine-grained per-layer timing signals can catch slow nodes within seconds, making it a practical reliability tool for anyone running large training clusters."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,55 @@
venue: CCGrid
year: 2024
date: "2024-05-06"
tags: [cloud-computing, distributed-systems, hpc]
selected:
- dblp_key: "conf/ccgrid/0001S24"
title: "Fair, Efficient Multi-Resource Scheduling for Stateless Serverless Functions with Anubis"
tldr: "Anubis introduces a fair, multi-resource scheduler for stateless serverless functions that achieves efficiency without sacrificing isolation between tenants."
why_notable: "Fairness in serverless resource allocation is an open problem as functions compete for heterogeneous resources (CPU, memory, I/O); Anubis provides a concrete, deployable answer. The work directly addresses a gap in production FaaS platforms where existing schedulers optimize for throughput but ignore per-tenant equity."
- dblp_key: "conf/ccgrid/SavasciSWIAS24"
title: "SLO-Power: SLO and Power-aware Elastic Scaling for Web Services"
tldr: "SLO-Power co-optimizes SLO compliance and power consumption during elastic scaling of web services, reducing energy use without violating latency targets."
why_notable: "Jointly chasing SLOs and power budgets is a critical concern for sustainable cloud operations; this work shows the two objectives can be reconciled in a single scaling controller. The approach is directly applicable to cloud autoscaling stacks where energy cost and QoS guarantees are both first-class concerns."
- dblp_key: "conf/ccgrid/HuangTCTLOLYBW24"
title: "HAPPIES: a History-Aware Efficient Cloud Resource Overcommitment System"
tldr: "HAPPIES uses historical utilization traces to safely overcommit cloud resources, improving cluster efficiency while bounding the risk of SLO violations."
why_notable: "Resource overcommitment is a primary lever for improving datacenter utilization, and HAPPIES advances the state of the art by making overcommitment decisions history-aware rather than reactive. Its deployment-oriented design makes it immediately relevant to hyperscale cloud operators seeking higher bin-packing ratios."
- dblp_key: "conf/ccgrid/DouZ00MWD24"
title: "COTuner: Joint Optimization of Resource Configuration and Software Parameters for Recurring Streaming Jobs on the Cloud"
tldr: "COTuner simultaneously tunes cloud resource allocation and application-level software knobs for recurring streaming jobs, reducing cost and latency together."
why_notable: "Streaming workloads on the cloud are poorly served by tools that tune resources and software parameters in isolation; COTuner's joint search closes this gap. The focus on recurring jobs makes the approach practical, amortizing tuning cost over repeated executions in production pipelines."
- dblp_key: "conf/ccgrid/KimKCK0KACK024"
title: "DeepVM: Integrating Spot and On-Demand VMs for Cost-Efficient Deep Learning Clusters in the Cloud"
tldr: "DeepVM dynamically mixes spot and on-demand VM instances to build cost-efficient, fault-tolerant deep learning training clusters in the cloud."
why_notable: "Training large models on cloud infrastructure is expensive, and spot instance preemptions are a major obstacle to reliability; DeepVM provides a principled integration strategy that achieves both cost savings and resilience. The approach is practically significant given the rapid growth of cloud-hosted AI training workloads."
- dblp_key: "conf/ccgrid/RaithRDCMFND24"
title: "Opportunistic Energy-Aware Scheduling for Container Orchestration Platforms Using Graph Neural Networks"
tldr: "A GNN-based scheduler for Kubernetes-style container orchestration platforms exploits opportunistic energy signals to reduce power consumption without degrading application performance."
why_notable: "Applying graph neural networks to container scheduling captures the complex topology of cluster resources in a way that heuristic schedulers cannot, while the energy-awareness angle addresses the sustainability imperative facing cloud providers. The work bridges recent ML advances with production container orchestration."
- dblp_key: "conf/ccgrid/WangCW24"
title: "Jingle: IoT-Informed Autoscaling for Efficient Resource Management in Edge Computing"
tldr: "Jingle leverages real-time IoT device signals to drive predictive autoscaling decisions at the edge, reducing both over-provisioning and latency spikes."
why_notable: "Edge autoscaling is hampered by the lack of load predictors tuned to IoT event patterns; Jingle fills this gap by treating IoT telemetry as a first-class input to the scaling loop. The result is a tighter edge-cloud integration model with direct relevance to smart-city and industrial IoT deployments."
- dblp_key: "conf/ccgrid/KulkarniRKMMABB24"
title: "XFBench: A Cross-Cloud Benchmark Suite for Evaluating FaaS Workflow Platforms"
tldr: "XFBench is a portable benchmark suite that evaluates FaaS workflow platforms across multiple cloud providers using representative workload patterns."
why_notable: "The absence of standardized, cross-cloud benchmarks for serverless workflow platforms hinders fair comparison and informed vendor selection; XFBench addresses this directly with a reusable, community-shareable artifact. It covers diverse workflow shapes and exposes platform-specific performance cliffs that single-provider benchmarks miss."
- dblp_key: "conf/ccgrid/CernudaLGKLKS24"
title: "Hades: A Context-Aware Active Storage Framework for Accelerating Large-Scale Data Analysis"
tldr: "Hades pushes data transformations into the storage layer using context-aware active storage, dramatically reducing I/O traffic and accelerating large-scale scientific data analysis."
why_notable: "As HPC datasets grow to petabyte scale, moving data to compute becomes the dominant bottleneck; Hades revives and modernizes the active-storage model with context awareness to match modern workflow patterns. The work is highly relevant to HPC-cloud convergence efforts where storage and compute are increasingly disaggregated."
- dblp_key: "conf/ccgrid/Kilic0TTMPJ24"
title: "Workflow Mini-Apps: Portable, Scalable, Tunable & Faithful Representations of Scientific Workflows"
tldr: "Workflow Mini-Apps are compact, parameterizable proxies that faithfully capture the performance behavior of full scientific workflows, enabling portable scheduling research without the overhead of running complete pipelines."
why_notable: "Scientific workflow scheduling research is bottlenecked by the cost and complexity of running real applications at scale; mini-apps lower this barrier while preserving the key performance characteristics needed for valid scheduler evaluation. The methodology is immediately reusable by the broader distributed workflow community."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,143 @@
venue: EuroSys
year: 2024
papers:
- title: 'Pronghorn: Effective Checkpoint Orchestration for Serverless Hot-Starts'
authors:
- Sumer Kohli
- Shreyas Kharbanda
- Rodrigo Bruno
- João Carreira
- Pedro Fonseca 0001
reason: "Demonstrates how carefully orchestrated checkpointing can eliminate cold-start latency in serverless runtimes, achieving near-instant hot-starts with negligible overhead."
- title: Serialization/Deserialization-free State Transfer in Serverless Workflows
authors:
- Fangming Lu
- Xingda Wei
- Zhuobin Huang
- Rong Chen 0001
- Mingyu Wu 0001
- Haibo Chen 0001
reason: "Eliminates the dominant serialization cost in serverless function chaining by enabling direct in-memory state passing, yielding large end-to-end latency reductions."
- title: 'SplitFT: Fault Tolerance for Disaggregated Datacenters via Remote Memory Logging'
authors:
- Xuhao Luo
- Ramnatthan Alagappan
- Aishwarya Ganesan
reason: "Proposes a principled fault-tolerance design for disaggregated datacenters that exploits the new memory-compute split to recover from failures with low overhead."
- title: 'Puddles: Application-Independent Recovery and Location-Independent Data for Persistent Memory'
authors:
- Suyash Mahar
- Mingyao Shen
- TJ Smith
- Joseph Izraelevitz
- Steven Swanson
reason: "Provides transparent crash consistency and data relocation for persistent memory without requiring application changes, easing adoption of PM-backed storage."
- title: 'Enoki: High Velocity Linux Kernel Scheduler Development'
authors:
- Samantha Miller
- Anirudh Kumar
- Tanay Vakharia
- Ang Chen 0001
- Danyang Zhuo
- Thomas E. Anderson
reason: "Enables safe, rapid iteration on Linux CPU schedulers by isolating scheduling logic in user space while keeping kernel integration, dramatically lowering the development barrier."
- title: Transparent Multicore Scaling of Single-Threaded Network Functions
authors:
- Lei Yan 0003
- Yueyang Pan
- Diyu Zhou
- George Candea
- Sanidhya Kashyap
reason: "Automatically parallelizes unmodified single-threaded network functions across cores with correctness guarantees, delivering near-linear throughput scaling without code changes."
- title: 'Hoda: a High-performance Open vSwitch Dataplane with Multiple Specialized Data Paths'
authors:
- Heng Pan
- Peng He 0003
- Zhenyu Li 0001
- Pan Zhang
- Junjie Wan
- Yuhao Zhou
- Xiongchun Duan
- Yu Zhang 0209
- Gaogang Xie
reason: "Redesigns the Open vSwitch dataplane with multiple specialized fast paths, achieving significant throughput improvements for cloud virtual networking."
- title: SmartNIC Security Isolation in the Cloud with S-NIC
authors:
- Yang Zhou 0008
- Mark Wilkening
- James Mickens
- Minlan Yu
reason: "Introduces hardware-enforced security isolation for SmartNIC offload tasks in multi-tenant clouds, preventing cross-tenant attacks without sacrificing offload performance."
- title: Finding Correctness Bugs in eBPF Verifier with Structured and Sanitized Program
authors:
- Hao Sun 0021
- Yiru Xu
- Jianzhong Liu
- Yuheng Shen
- Nan Guan
- Yu Jiang 0001
reason: "Systematically uncovers verifier logic bugs that can silently allow unsafe eBPF programs to execute in the kernel, with a structured fuzzing approach validated on the Linux eBPF verifier."
- title: 'CSAL: the Next-Gen Local Disks for the Cloud'
authors:
- Yanbo Zhou
- Erci Xu
- Li Zhang
- Kapil Karkra
- Mariusz Barczak
- Wayne Gao
- Wojciech Malikowski
- Mateusz Kozlowski
- Lukasz Lasek
- Ruiming Lu
- Feng Yang
- Lilong Huang
- Xiaolu Zhang
- Keqiang Niu
- Jiaji Zhu
- Jiesheng Wu
reason: "Describes a production cloud local-disk system that replaces raw NVMe with a software-defined layer to deliver better performance, reliability, and operational flexibility at hyperscale."
- title: 'Volley: Accelerating Write-Read Orders in Disaggregated Storage'
authors:
- Shaoxun Zeng
- Xiaojian Liao
- Hao Guo
- Youyou Lu
reason: "Addresses write-read ordering hazards in disaggregated storage by pipelining acknowledgements with read-side tracking, substantially reducing tail latency without weakening durability."
- title: 'Erlang: Application-Aware Autoscaling for Cloud Microservices'
authors:
- Vighnesh Sachidananda
- Anirudh Sivaraman
reason: "Leverages application-level call-graph semantics to make autoscaling decisions that are both faster and more accurate than black-box reactive policies, cutting SLO violations in microservice deployments."
- title: Automatic Root Cause Analysis via Large Language Models for Cloud Incidents
authors:
- Yinfang Chen
- Huaibing Xie
- Minghua Ma
- Yu Kang 0006
- Xin Gao 0017
- Liu Shi
- Yunjie Cao
- Xuedong Gao
- Hao Fan
- Ming Wen 0001
- Jun Zeng 0006
- Supriyo Ghosh
- Xuchao Zhang
- Chaoyun Zhang
- Qingwei Lin
- Saravan Rajmohan
- Dongmei Zhang 0001
- Tianyin Xu
reason: "Demonstrates an LLM-driven pipeline for automated cloud-incident root cause analysis deployed at Microsoft Azure, showing strong recall and significant reduction in on-call engineer effort."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,70 @@
venue: EuroSys
year: 2025
date: "2025-03-30"
tags: [operating-systems, distributed-systems, cloud, storage, memory, networking, llm-systems, security, hardware-software-co-design, serverless]
selected:
- dblp_key: "conf/eurosys/RameshHT025"
title: "Empowering WebAssembly with Thin Kernel Interfaces"
tldr: "A new OS interface design exposes thin, capability-based kernel primitives directly to WebAssembly modules, eliminating the POSIX translation layer."
why_notable: "WebAssembly is increasingly used beyond the browser as a portable, sandboxed compute substrate; this work shows that rethinking the system interface from scratch yields significantly lower overhead and better safety properties than layering Wasm on top of POSIX."
- dblp_key: "conf/eurosys/ZhongLAA25"
title: "Revealing the Unstable Foundations of eBPF-Based Kernel Extensions"
tldr: "A systematic study exposes how eBPF programs silently break across kernel versions due to undocumented and unstable kernel data structure dependencies."
why_notable: "From the Arpaci-Dusseau group, this paper delivers surprising and practically consequential findings: a large fraction of real-world eBPF programs are fragile across kernel versions, undermining the widely held assumption that eBPF is a safe and stable extension mechanism."
- dblp_key: "conf/eurosys/PengLPVV025"
title: "Pegasus: Transparent and Unified Kernel-Bypass Networking for Fast Local and Remote Communication"
tldr: "Pegasus provides a single kernel-bypass networking stack that transparently accelerates both intra-host (IPC) and inter-host communication without application changes."
why_notable: "Unifying local and remote fast paths is a long-standing challenge; Pegasus demonstrates that the same RDMA-style techniques can be applied to loopback traffic, yielding substantial latency reductions for microservice workloads with no API changes."
- dblp_key: "conf/eurosys/Li00ZYZXQ25"
title: "Daredevil: Rescue Your Flash Storage from Inflexible Kernel Storage Stack"
tldr: "Daredevil bypasses the rigid Linux block layer to allow flash storage devices to express fine-grained I/O semantics directly to applications."
why_notable: "The Linux storage stack was designed for spinning disks and consistently imposes unnecessary overhead on modern NVMe SSDs; Daredevil demonstrates that rethinking the kernel/device interface boundary unlocks significant throughput and latency gains that the existing stack structurally prevents."
- dblp_key: "conf/eurosys/AllisonG0HKN025"
title: "Towards Efficient Flash Caches with Emerging NVMe Flexible Data Placement SSDs"
tldr: "This paper shows how NVMe Flexible Data Placement (FDP) SSDs can be exploited by flash cache software to dramatically reduce write amplification and improve device lifetime."
why_notable: "FDP is a newly standardized NVMe feature; this is one of the first systems papers to demonstrate end-to-end integration with a production-grade flash caching stack, revealing concrete performance and endurance benefits that motivate wider adoption."
- dblp_key: "conf/eurosys/QiZHH0H025"
title: "Chrono: Meticulous Hotness Measurement and Flexible Page Migration for Memory Tiering"
tldr: "Chrono introduces fine-grained, low-overhead hotness tracking and a flexible page migration policy that adapts to workload dynamics for tiered memory systems."
why_notable: "As CXL-based memory tiering becomes a reality in data centers, accurate hotness estimation is critical; Chrono's approach substantially outperforms existing kernel mechanisms and sets a new baseline for OS-level tiered memory management."
- dblp_key: "conf/eurosys/YoonOMK25"
title: "Adios to Busy-Waiting for Microsecond-scale Memory Disaggregation"
tldr: "This work eliminates CPU-wasting busy-waiting in disaggregated memory systems by designing interrupt-driven mechanisms that still meet microsecond latency targets."
why_notable: "Busy-waiting is the conventional wisdom for achieving low latency in disaggregated memory, yet it burns entire CPU cores; this paper challenges that assumption and shows interrupt-based designs can match latency while freeing substantial compute, which matters greatly at scale."
- dblp_key: "conf/eurosys/GentleK25"
title: "Collaborative Text Editing with Eg-walker: Better, Faster, Smaller"
tldr: "Eg-walker is a new CRDT algorithm for collaborative text editing that is simultaneously faster, more memory-efficient, and produces smaller operation logs than prior state-of-the-art CRDTs."
why_notable: "Collaborative editing CRDTs have been considered a mature area, making it surprising that Eg-walker achieves order-of-magnitude improvements across all key metrics; the result, from Martin Kleppmann, will likely become the new reference design for replicated text data structures."
- dblp_key: "conf/eurosys/LyuXN0ZB25"
title: "Ladon: High-Performance Multi-BFT Consensus via Dynamic Global Ordering"
tldr: "Ladon achieves high throughput in Byzantine fault-tolerant consensus by running multiple BFT instances in parallel and dynamically merging their outputs into a consistent global order."
why_notable: "Byzantine consensus is notoriously throughput-limited; Ladon's multi-instance approach with a novel global ordering layer demonstrates near-linear throughput scaling with the number of consensus instances, a significant advance for permissioned blockchain and critical-infrastructure scenarios."
- dblp_key: "conf/eurosys/ShengZYWZZPL025"
title: "HybridFlow: A Flexible and Efficient RLHF Framework"
tldr: "HybridFlow introduces a hybrid dataflow model for RLHF training that co-schedules the actor, critic, and reward models to maximize GPU utilization across heterogeneous cluster configurations."
why_notable: "RLHF has become central to LLM alignment yet existing frameworks map poorly to its multi-model, tightly coupled training loop; HybridFlow's design substantially improves end-to-end training throughput and provides a principled abstraction for future alignment training research."
- dblp_key: "conf/eurosys/YaoLLRCZD0J25"
title: "CacheBlend: Fast Large Language Model Serving for RAG with Cached Knowledge Fusion"
tldr: "CacheBlend reuses KV caches from multiple pre-computed document chunks and fuses them selectively at inference time, avoiding the quadratic cost of full re-encoding for retrieval-augmented generation."
why_notable: "RAG is a dominant LLM deployment pattern, but cache reuse across dynamically assembled contexts is unsolved; CacheBlend's selective fusion strategy delivers large time-to-first-token reductions with negligible quality degradation, directly improving the economics of production LLM serving."
- dblp_key: "conf/eurosys/YouCZLCDWWHL25"
title: "AlloyStack: A Library Operating System for Serverless Workflow Applications"
tldr: "AlloyStack is a library OS tailored for serverless workflows that collapses function boundaries within a workflow into a single address space to eliminate inter-function communication overhead."
why_notable: "Serverless workflows suffer from high invocation and communication latency because each function is an isolated container; AlloyStack's library OS approach is a principled architectural answer that shows substantial end-to-end latency and cost improvements for real workflow benchmarks."
- dblp_key: "conf/eurosys/MukherjeeHBMMGA25"
title: "CRAVE: Analyzing Cross-Resource Interaction to Improve Energy Efficiency in Systems-on-Chip"
tldr: "CRAVE models the cross-resource interference between CPU, GPU, and memory subsystems on SoCs to guide software-level energy optimization decisions."
why_notable: "Energy efficiency is increasingly a first-class constraint in both mobile and data center SoCs, yet interactions between on-chip resources are poorly understood at the software level; CRAVE's analysis framework reveals counter-intuitive interference patterns and enables measurable energy savings without hardware changes."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,261 @@
venue: FGCS
year: 2024
selected:
- title: "Quantum-centric supercomputing for materials science: A perspective on challenges
and future directions"
authors:
- Yuri Alexeev
- Maximilian Amsler
- Marco Antonio Barroca
- Sanzio Bassini
- Torey Battelle
- Daan Camps
- David Casanova
- Young Jay Choi
- Frederic T. Chong
- Charles Chung
- Christopher Codella
- Antonio D. Córcoles
- James Cruise
- Alberto Di Meglio
- Ivan Duran
- Thomas Eckl
- Sophia E. Economou
- Stephan J. Eidenbenz
- Bruce Elmegreen
- Clyde Fare
- Ismael Faro
- Cristina Sanz Fernández
- Rodrigo Neumann Barros Ferreira
- Keisuke Fuji
- Bryce Fuller
- Laura Gagliardi
- Giulia Galli
- Jennifer R. Glick
- Isacco Gobbi
- Pranav Gokhale
- Salvador de la Puente Gonzalez
- Johannes Greiner
- Bill Gropp
- Michele Grossi
- Emanuel Gull
- Burns Healy
- Matthew R. Hermes
- Benchen Huang
- Travis S. Humble
- Nobuyasu Ito
- Artur F. Izmaylov
- Ali Javadi-Abhari
- Douglas M. Jennewein
- Shantenu Jha
- Liang Jiang
- Barbara Jones
- Wibe Albert de Jong
- Petar Jurcevic
- William M. Kirby
- Stefan Kister
- Masahiro Kitagawa
- Joel Klassen
- Katherine Klymko
- Kwangwon Koh
- Masaaki Kondo
- Doga Murat Kürkçüoglu
- Krzysztof Kurowski
- Teodoro Laino
- Ryan Landfield
- Matthew L. Leininger
- Vicente Leyton-Ortega
- Ang Li 0006
- Meifeng Lin
- Junyu Liu
- Nicolás Lorente
- André Luckow
- Simon Martiel
- Francisco Martín-Fernández
- Margaret Martonosi
- Claire Marvinney
- Arcesio Castañeda Medina
- Dirk Merten
- Antonio Mezzacapo
- Kristel Michielsen
- Abhishek Mitra
- Tushar Mittal
- Kyungsun Moon
- Joel Moore
- Sarah Mostame
- Mario Motta
- Young-Hye Na
- Yunseong Nam
- Prineha Narang
- Yu-ya Ohnishi
- Daniele Ottaviani
- Matthew Otten
- Scott Pakin
- Vincent R. Pascuzzi
- Edwin Pednault
- Tomasz Piontek
- Jed Pitera
- Patrick Rall
- Gokul Subramanian Ravi
- Niall Robertson
- Matteo A. C. Rossi
- Piotr Rydlichowski
- Hoon Ryu
- Georgy Samsonidze
- Mitsuhisa Sato
- Nishant Saurabh
- Vidushi Sharma
- Kunal Sharma
- Soyoung Shin
- George Slessman
- Mathias Steiner
- Iskandar Sitdikov
- In-Saeng Suh
- Eric D. Switzer
- Wei Tang
- Joel Thompson
- Synge Todo
- Minh C. Tran
- Dimitar Trenev
- Christian Trott
- Huan-Hsin Tseng
- Norm M. Tubman
- Esin Tureci
- David García Valiñas
- Sofia Vallecorsa
- Christopher Wever
- Konrad Wojciechowski
- Xiaodi Wu 0001
- Shinjae Yoo
- Nobuyuki Yoshioka
- Victor Wen-zhe Yu
- Seiji Yunoki
- Sergiy Zhuk
- Dmitry Zubarev
tldr: "A comprehensive roadmap from IBM, national labs, and universities identifying key algorithmic, software, and hardware challenges for using quantum processors alongside classical HPC to advance materials science simulations."
why_notable: "Essential reading for any researcher planning quantum-classical hybrid workflows, covering the full stack from error mitigation to application mapping at scale."
- title: Integrating quantum computing resources into scientific HPC ecosystems
authors:
- Thomas L. Beck
- Alessandro Baroni 0003
- Ryan S. Bennink
- Gilles Buchs
- Eduardo Antonio Coello Pérez
- Markus Eisenbach 0002
- Rafael Ferreira da Silva
- Muralikrishnan Gopalakrishnan Meena
- Kalyana C. Gottiparthi
- Peter Groszkowski
- Travis S. Humble
- Ryan Landfield
- Ketan Maheshwari
- Sarp Oral
- Michael A. Sandoval
- Amir Shehata
- In-Saeng Suh
- Christopher Zimmer 0001
tldr: "Describes the architecture and middleware decisions made at Oak Ridge National Laboratory to expose quantum devices as first-class resources within an existing HPC facility."
why_notable: "One of the first concrete descriptions of a production-scale quantum-HPC integration, providing a template other facilities can follow."
- title: 'Lotaru: Locally predicting workflow task runtimes for resource management
on heterogeneous infrastructures'
authors:
- Jonathan Bader
- Fabian Lehmann
- Lauritz Thamsen
- Ulf Leser
- Odej Kao
tldr: "Lotaru learns lightweight per-workflow runtime prediction models locally on each node using micro-benchmarks, eliminating the need for a centralized profiling service on heterogeneous clusters."
why_notable: "Addresses a core bottleneck in scientific workflow scheduling with a practical, evaluated approach that works without historical traces."
- title: 'The globus compute dataset: An open function-as-a-service dataset from the
edge to the cloud'
authors:
- André Bauer 0001
- Haochen Pan
- Ryan Chard
- Yadu N. Babuji
- Josh Bryan
- Devesh Tiwari
- Ian T. Foster
- Kyle Chard
tldr: "Releases a large real-world dataset of function invocations across edge, campus, and cloud resources collected from the Globus Compute FaaS platform, along with workload analysis."
why_notable: "Provides the community with a rare, richly annotated dataset for benchmarking distributed FaaS schedulers and studying edge-to-cloud task patterns at scale."
- title: "A survey on checkpointing strategies: Should we always checkpoint à la Young/Daly?"
authors:
- Leonardo Bautista-Gomez
- Anne Benoit
- Sheng Di
- Thomas Hérault
- Yves Robert
- Hongyang Sun 0001
tldr: "Surveys decades of checkpointing research and rigorously examines when the classic Young/Daly formula is optimal versus when multi-level, coordinated, or application-aware strategies outperform it."
why_notable: "A definitive reference for HPC fault tolerance that unifies scattered results and provides clear guidance on choosing a checkpointing strategy for modern exascale workloads."
- title: Scalable I/O aggregation for asynchronous multi-level checkpointing
authors:
- Mikaila J. Gossman
- Bogdan Nicolae
- Jon C. Calhoun
tldr: "Proposes an aggregation layer that pipelines writes across multiple memory and storage tiers asynchronously, reducing checkpoint overhead for large-scale MPI applications."
why_notable: "Delivers measurable improvements in checkpoint throughput on realistic HPC applications, directly addressing the I/O bottleneck at exascale."
- title: 'StructMesh: A storage framework for serverless computing continuum'
authors:
- Diana Carrizales-Espinoza
- Dante D. Sánchez-Gallegos
- José Luis González Compeán
- Jesús Carretero 0001
tldr: "Introduces a hierarchical storage abstraction that unifies data management across edge, fog, and cloud tiers for serverless workflows, supporting structured data access patterns."
why_notable: "Offers a practical, evaluated solution to the data management gap in cloud-edge serverless architectures, relevant to scientific and industrial workflow deployment."
- title: Paving the way to hybrid quantum-classical scientific workflows
authors:
- Sandeep Suresh Cranganore
- Vincenzo De Maio
- Ivona Brandic
- Ewa Deelman
tldr: "Defines a taxonomy and reference architecture for hybrid quantum-classical workflows, mapping quantum circuit execution onto existing scientific workflow management system abstractions."
why_notable: "Provides the conceptual foundations needed to extend tools like Pegasus or Swift to orchestrate quantum subroutines within larger scientific pipelines."
- title: Online learning and continuous model upgrading with data streams through
the Kafka-ML framework
authors:
- Alejandro Carnero
- Cristian Martín 0002
- Gwanggil Jeon
- Manuel Díaz
tldr: "Extends Kafka-ML to support incremental online learning directly from streaming data topics, enabling continuous model updates without retraining from scratch in edge-cloud deployments."
why_notable: "Demonstrates a full open-source framework that bridges stream processing and ML model lifecycle management, with relevance to IoT and real-time analytics pipelines."
- title: 'GRAAFE: GRaph Anomaly Anticipation Framework for Exascale HPC systems'
authors:
- Martin Molan
- Mohsen Seyedkazemi Ardebili
- Junaid Ahmed Khan
- Francesco Beneventi
- Daniele Cesarini
- Andrea Borghesi
- Andrea Bartolini
tldr: "Uses graph neural networks trained on node telemetry to predict imminent failures in exascale HPC clusters before they occur, enabling proactive maintenance and job migration."
why_notable: "Shows that temporal graph models over system topology substantially outperform per-node anomaly detection, with validation on a real pre-exascale machine."
- title: 'QFaaS: A Serverless Function-as-a-Service framework for Quantum computing'
authors:
- Hoa T. Nguyen
- Muhammad Usman 0009
- Rajkumar Buyya
tldr: "Proposes QFaaS, a broker-based FaaS platform that abstracts heterogeneous quantum hardware providers behind a unified serverless interface with automatic circuit compilation and resource selection."
why_notable: "Addresses the pressing need for a cloud-agnostic quantum execution layer, laying groundwork for portable quantum applications across IBM, IonQ, and similar backends."
- title: 'Enabling federated learning across the computing continuum: Systems, challenges
and future directions'
authors:
- Cèdric Prigent
- Alexandru Costan
- Gabriel Antoniu
- Loïc Cudennec
tldr: "Systematically surveys the technical barriers to training federated learning models that span IoT devices, edge servers, and cloud data centers, and proposes a reference architecture addressing heterogeneity and mobility."
why_notable: "A timely synthesis that clarifies open problems at the intersection of federated learning and the compute continuum, useful as a roadmap for system builders."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,145 @@
venue: FGCS
year: 2025
selected:
- title: Multifacets of lossy compression for scientific data in the Joint-Laboratory
of Extreme Scale Computing
authors:
- Franck Cappello
- Mario C. Acosta
- Emmanuel Agullo
- Hartwig Anzt
- Jon Calhoun 0001
- Sheng Di
- Luc Giraud
- Thomas Grützmacher
- Sian Jin
- Kentaro Sano
- Kento Sato
- Amarjit Singh
- Dingwen Tao
- Jiannan Tian
- Tomohiro Ueno
- Robert Underwood
- Frédéric Vivien
- Xavier Yepes
- Kazutomo Yoshii
- Boyuan Zhang 0002
tldr: "A joint JLESC survey covering error-bounded lossy compressors (SZ, ZFP, MGARD) across simulation, AI, and in-situ analytics use cases, with benchmarks on real scientific datasets at extreme scale."
why_notable: "The most comprehensive cross-site evaluation of scientific data compression to date, providing actionable guidance on compressor selection for different numerical kernels and accuracy requirements."
- title: Efficient distributed continual learning for steering experiments in real-time
authors:
- Thomas Bouvier
- Bogdan Nicolae
- Alexandru Costan
- Tekin Bicer
- Ian T. Foster
- Gabriel Antoniu
tldr: "Proposes a distributed continual learning architecture that keeps deep learning models synchronized with a running scientific experiment by streaming lightweight updates across edge detectors and HPC backends."
why_notable: "One of the first systems to close the loop between experimental data streams and model adaptation in real-time without full retraining, validated on synchrotron detector workloads."
- title: 'SmartKV: A cost-effective and low-latency geo-distributed key-value store
for the computing continuum'
authors:
- Juan Aznar-Poveda
- Maximilian Franz Ebner
- Thomas Fahringer
- Zahra Najafabadi Samani
- Marlon Etheredge
- Stefan Pedratscher
- Nishant Saurabh
tldr: "Introduces SmartKV, a geo-distributed key-value store that uses latency-aware replication policies to deliver consistent low-latency reads across edge, fog, and cloud tiers of the computing continuum."
why_notable: "Provides a concrete, benchmarked storage primitive for the computing continuum that fills the gap between single-datacenter stores and high-latency cloud object storage."
- title: Scalable compute continuum
authors:
- Valeria Cardellini
- Patrizio Dazzi
- Gabriele Mencagli
- Matteo Nardelli 0001
- Massimo Torquati
tldr: "Defines a programming and deployment model for the compute continuum that abstracts resource heterogeneity from edge to cloud, enabling applications to scale dynamically across tiers."
why_notable: "Provides a principled architectural reference for the continuum that can guide system designers building next-generation distributed runtime environments."
- title: A comparative study of ad-hoc file systems for extreme scale computing
authors:
- Njoud O. Almaaitah
- Francisco Javier García Blas
- Genaro Sanchez-Gallegos
- Jesús Carretero 0001
- Marc-André Vef
- André Brinkmann
tldr: "Benchmarks GekkoFS, BeeGFS, and similar ad-hoc file systems under diverse HPC I/O patterns, characterizing their throughput, metadata performance, and suitability for burst-buffer scenarios."
why_notable: "The most systematic evaluation of ad-hoc parallel file systems available, giving HPC centers clear data to choose or configure temporary storage for large scientific workflows."
- title: Advancing anomaly detection in computational workflows with active learning
authors:
- Krishnan Raghavan
- George Papadimitriou 0002
- Hongwei Jin
- Anirban Mandal
- Mariam Kiran
- Prasanna Balaprakash
- Ewa Deelman
tldr: "Applies active learning to reduce the labeling burden for workflow anomaly detection, selectively querying an oracle for the most informative execution traces within a Pegasus workflow framework."
why_notable: "Demonstrates that active learning can make anomaly detection practical in real scientific workflows where labeled failure data is scarce, with experiments on production workloads."
- title: 'MITgcm-AD v2: Open source tangent linear and adjoint modeling framework
for the oceans and atmosphere enabled by the Automatic Differentiation tool Tapenade'
authors:
- Shreyas Sunil Gaikwad
- Sri Hari Krishna Narayanan
- Laurent Hascoët
- Jean-Michel Campin
- Helen Pillar
- An Nguyen
- Jan Hückelheim
- Paul D. Hovland
- Patrick Heimbach
tldr: "Describes MITgcm-AD v2, a production-quality adjoint of the MITgcm ocean-atmosphere model generated with Tapenade, enabling global sensitivity analyses and data assimilation at scale."
why_notable: "A landmark in scientific computing software sustainability: a fully open, differentiable climate model that enables gradient-based inversion for ocean state estimation."
- title: 'zCeph: Design and implementation of a ZNS-friendly distributed file system'
authors:
- Jinyong Ha 0001
- Yongseok Son
tldr: "Redesigns the Ceph distributed file system to exploit Zoned Namespace SSDs natively, eliminating write amplification and improving throughput by aligning file system semantics with ZNS zone constraints."
why_notable: "Demonstrates how next-generation storage hardware (ZNS SSDs) demands rethinking distributed storage stack designs, with significant performance gains on real hardware."
- title: 'RADiCe: A Risk Analysis Framework for Data Centers'
authors:
- Fabian Mastenbroek
- Tiziano De Matteis
- Vincent van Beek
- Alexandru Iosup
tldr: "Provides a quantitative risk analysis framework for data centers that models cascading failures across power, cooling, and compute subsystems using simulation to estimate availability and cost trade-offs."
why_notable: "Fills a practical gap for data center operators who need principled tools to evaluate infrastructure resilience beyond simple redundancy rules."
- title: Deadline-constrained security-aware workflow scheduling in hybrid cloud architecture
authors:
- Somayeh Abdi
- Mohammad Ashjaei
- Saad Mubeen
tldr: "Formulates workflow scheduling in hybrid clouds as a multi-objective problem that jointly minimizes cost and execution time while meeting both deadline and data-security placement constraints."
why_notable: "One of the few scheduling works that treats security classification of tasks as a first-class constraint alongside performance, with practical validation on scientific workflow benchmarks."
- title: 'Regen: An object layout regenerator on large-scale production HPC systems'
authors:
- Dong Kyu Sung
- Sunggon Kim
- Sangjin Lee 0003
- Houjun Tang
- Alex Sim
- Kesheng Wu
- Suren Byna
- Yongseok Son
tldr: "Regen transparently reorganizes the on-disk layout of HDF5 and NetCDF objects in parallel file systems to match actual access patterns, improving I/O performance without application changes."
why_notable: "Deployed and validated on a production HPC system, showing significant I/O speedups for real scientific datasets, making it immediately relevant to storage administrators."
- title: Formal definition and implementation of reproducibility tenets for computational
workflows
authors:
- Nicholas J. Pritchard
- Andreas Wicenec
tldr: "Formalizes a set of reproducibility requirements for scientific workflows and implements a verification layer within the DALIUGE workflow engine that checks compliance at design and execution time."
why_notable: "Provides the community with a concrete, tool-supported definition of workflow reproducibility, moving beyond aspirational guidelines to enforceable runtime checks."

View File

@@ -0,0 +1,632 @@
venue: HPDC
year: 2024
source: dblp
count: 48
papers:
- title: 'HAM-SpMSpV: an Optimized Parallel Algorithm for Masked Sparse Matrix-Sparse
Vector Multiplications on multi-core CPUs'
authors:
- Lei Xu 0023
- Haipeng Jia
- Yunquan Zhang
- Luhan Wang
- Xianmeng Jiang
year: '2024'
doi: 10.1145/3625549.3658680
url: https://doi.org/10.1145/3625549.3658680
dblp_key: conf/hpdc/0023JZWJ24
venue_name: HPDC
pages: 160-173
- title: 'Loki: A System for Serving ML Inference Pipelines with Hardware and Accuracy
Scaling'
authors:
- Sohaib Ahmad
- Hui Guan 0001
- Ramesh K. Sitaraman
year: '2024'
doi: 10.1145/3625549.3658688
url: https://doi.org/10.1145/3625549.3658688
dblp_key: conf/hpdc/Ahmad0S24
venue_name: HPDC
pages: 267-280
- title: 'Efficient Stream Join Processing: Novel Approaches and Challenges'
authors:
- Adeel Aslam
- Giovanni Simonini
year: '2024'
doi: 10.1145/3625549.3658833
url: https://doi.org/10.1145/3625549.3658833
dblp_key: conf/hpdc/AslamS24
venue_name: HPDC
pages: 409-412
- title: 'Faast: An Efficient Serverless Framework Made Snapshot-based Function Response
Fast'
authors:
- Yongshu Bai
- Zhihui Yang
- Feng Gao
year: '2024'
doi: 10.1145/3625549.3658681
url: https://doi.org/10.1145/3625549.3658681
dblp_key: conf/hpdc/BaiYG24
venue_name: HPDC
pages: 174-185
- title: Efficient all-to-all Collective Communication Schedules for Direct-connect
Topologies
authors:
- Prithwish Basu
- Liangyu Zhao
- Jason Fantl
- Siddharth Pal
- Arvind Krishnamurthy
- Joud Khoury
year: '2024'
doi: 10.1145/3625549.3658656
url: https://doi.org/10.1145/3625549.3658656
dblp_key: conf/hpdc/BasuZFPKK24
venue_name: HPDC
pages: 28-41
- title: Reinforcement Learning-based Adaptive Mitigation of Uncorrected DRAM Errors
in the Field
authors:
- Isaac Boixaderas
- Sergi Moré
- Javier Bartolome
- David Vicente
- Petar Radojkovic
- Paul M. Carpenter
- Eduard Ayguadé
year: '2024'
doi: 10.1145/3625549.3658686
url: https://doi.org/10.1145/3625549.3658686
dblp_key: conf/hpdc/BoixaderasMBVRC24
venue_name: HPDC
pages: 240-252
- title: 'TEACHING Platform for Human-Centric Autonomous Applications: Design and
Overview'
authors:
- Valerio De Caro
- Christos Chronis
- Massimo Coppola
- Vincenzo Lomonaco
- Claudio Gallicchio
- Konstantinos Tserpes
- Davide Bacciu
year: '2024'
doi: 10.1145/3625549.3658813
url: https://doi.org/10.1145/3625549.3658813
dblp_key: conf/hpdc/CaroCCLGTB24
venue_name: HPDC
pages: 381-384
- title: 'IDT: Intelligent Data Placement for Multi-tiered Main Memory with Reinforcement
Learning'
authors:
- Juneseo Chang
- Wanju Doh
- Yaebin Moon
- Eojin Lee
- Jung Ho Ahn
year: '2024'
doi: 10.1145/3625549.3658659
url: https://doi.org/10.1145/3625549.3658659
dblp_key: conf/hpdc/ChangDMLA24
venue_name: HPDC
pages: 69-82
- title: A Practical Introduction to Quantum Computing and Networking
authors:
- Claudio Cicconetti
year: '2024'
doi: 10.1145/3625549.3660507
url: https://doi.org/10.1145/3625549.3660507
dblp_key: conf/hpdc/Cicconetti24
venue_name: HPDC
pages: 348-349
- title: 'EDGELESS: A Software Architecture for Stateful FaaS at the Edge'
authors:
- Claudio Cicconetti
- Emanuele Carlini 0001
- Raphael Hetzel
- Richard Mortier
- Antonio Paradell
- Markus Sauer
year: '2024'
doi: 10.1145/3625549.3658817
url: https://doi.org/10.1145/3625549.3658817
dblp_key: conf/hpdc/CicconettiCHMPS24
venue_name: HPDC
pages: 393-396
- title: 'FaaSKeeper: Learning from Building Serverless Services with ZooKeeper as
an Example'
authors:
- Marcin Copik
- Alexandru Calotoiu
- Pengyu Zhou
- Konstantin Taranov
- Torsten Hoefler
year: '2024'
doi: 10.1145/3625549.3658661
url: https://doi.org/10.1145/3625549.3658661
dblp_key: conf/hpdc/CopikCZTH24
venue_name: HPDC
pages: 94-108
- title: 'GNNOne: A Unified System Optimizations for GNN Kernels'
authors:
- Yidong Gong
- Pradeep Kumar
year: '2024'
doi: 10.1145/3625549.3658655
url: https://doi.org/10.1145/3625549.3658655
dblp_key: conf/hpdc/GongK24
venue_name: HPDC
pages: 15-27
- title: 'Swarm Storm: An Automated Chaos Tool for Docker Swarm Applications'
authors:
- Travis Higgins
- Devki Nandan Jha
- Rajiv Ranjan 0001
year: '2024'
doi: 10.1145/3625549.3658827
url: https://doi.org/10.1145/3625549.3658827
dblp_key: conf/hpdc/HigginsJ024
venue_name: HPDC
pages: 367-369
- title: Semantic-Aware Log Understanding and Analysis
authors:
- Shaohan Huang
- Zhongzhi Luan
year: '2024'
doi: 10.1145/3625549.3658830
url: https://doi.org/10.1145/3625549.3658830
dblp_key: conf/hpdc/HuangL24
venue_name: HPDC
pages: 413-416
- title: 'ESG: Pipeline-Conscious Efficient Scheduling of DNN Workflows on Serverless
Platforms with Shareable GPUs'
authors:
- Xinning Hui
- Yuanchao Xu 0001
- Zhishan Guo
- Xipeng Shen
year: '2024'
doi: 10.1145/3625549.3658657
url: https://doi.org/10.1145/3625549.3658657
dblp_key: conf/hpdc/Hui0GS24
venue_name: HPDC
pages: 42-55
- title: 'FASOP: Fast yet Accurate Automated Search for Optimal Parallelization of
Transformers on Heterogeneous GPU Clusters'
authors:
- Sunyeol Hwang
- Eungyeong Lee
- Hongseok Oh 0003
- Youngmin Yi
year: '2024'
doi: 10.1145/3625549.3658687
url: https://doi.org/10.1145/3625549.3658687
dblp_key: conf/hpdc/HwangLOY24
venue_name: HPDC
pages: 253-266
- title: 'K-RAF: A Kubernetes-based Resource Augmentation Framework for Edge Devices'
authors:
- Youngwoo Jang
- Jiseob Byun
- Soonbeom Kwon
- Illyoung Choi
- Dukyun Nam
- Byungchul Tak
- Gap-Joo Na
- Young-Kyoon Suh
year: '2024'
doi: 10.1145/3625549.3658826
url: https://doi.org/10.1145/3625549.3658826
dblp_key: conf/hpdc/JangBKCNTNS24
venue_name: HPDC
pages: 364-366
- title: Acceleration of Ultrasound Neurostimulation Using Mixed-Precision Arithmetic
authors:
- Jirí Jaros
- Radek Duchon
year: '2024'
doi: 10.1145/3625549.3658823
url: https://doi.org/10.1145/3625549.3658823
dblp_key: conf/hpdc/JarosD24
venue_name: HPDC
pages: 370-372
- title: 'k-Dispatch: Enabling Cost-Optimized Biomedical Workflow Offloading'
authors:
- Marta Jaros
- Jirí Jaros
year: '2024'
doi: 10.1145/3625549.3658828
url: https://doi.org/10.1145/3625549.3658828
dblp_key: conf/hpdc/JarosJ24
venue_name: HPDC
pages: 358-360
- title: Trade-off Analysis between Knowledge Distillation and Federated Learning
in Distributed Edge System
authors:
- Mbasa Joaquim Molo
year: '2024'
doi: 10.1145/3625549.3658834
url: https://doi.org/10.1145/3625549.3658834
dblp_key: conf/hpdc/Joaquim24
venue_name: HPDC
pages: 405-408
- title: 'FaaSRail: Employing Real Workloads to Generate Representative Load for Serverless
Research'
authors:
- Christos Katsakioris
- Chloe Alverti
- Konstantinos Nikas
- Dimitrios Siakavaras
- Stratos Psomadakis
- Nectarios Koziris
year: '2024'
doi: 10.1145/3625549.3658684
url: https://doi.org/10.1145/3625549.3658684
dblp_key: conf/hpdc/KatsakiorisANSP24
venue_name: HPDC
pages: 214-226
- title: 'DLHT: A Non-blocking Resizable Hashtable with Fast Deletes and Memory-awareness'
authors:
- Antonios Katsarakis
- Vasilis Gavrielatos
- Nikos Ntarmos
year: '2024'
doi: 10.1145/3625549.3658682
url: https://doi.org/10.1145/3625549.3658682
dblp_key: conf/hpdc/KatsarakisGN24
venue_name: HPDC
pages: 186-199
- title: Constrained Approximate Query Processing with Error and Response Time-Bound
Guarantees for Efficient Big Data Analytics
authors:
- Sungsoo Kim
- Choon Seo Park
- Taewhi Lee
- Kihyuk Nam
year: '2024'
doi: 10.1145/3625549.3658824
url: https://doi.org/10.1145/3625549.3658824
dblp_key: conf/hpdc/KimPLN24
venue_name: HPDC
pages: 373-376
- title: 'EMPYREAN: Trustworthy, Cognitive and AI-driven Collaborative Associations
of IoT Devices and Edge Resources for Data Processing'
authors:
- Aristotelis Kretsis
- Panagiotis C. Kokkinos
- Emmanouel A. Varvarigos
- Dimitris Syrivelis
- Paraskevas Bakopoulos
- Márton Sipos
- Marcell Fehér
- Daniel Enrique Lucani
- José Manuel Bernabé Murcia
- Antonio F. Skarmeta
- Ivan Paez
- Luca Cominardi
- Michael Mercier
- Pedro Velho
- Yiannis Georgiou
- Charalampos Mainas
- Anastassios Nanos
- Javier Martin
- Aitor Fernández Gómez
- Roberto Gonzalez
- Panos Ilias
- Theodoros Chalazas
- Keshav Chintamani
year: '2024'
doi: 10.1145/3625549.3658814
url: https://doi.org/10.1145/3625549.3658814
dblp_key: conf/hpdc/KretsisKVSBSFLM24
venue_name: HPDC
pages: 385-388
- title: Extending Sparse Patterns to Improve Inverse Preconditioning on GPU Architectures
authors:
- Sergi Laut
- Ricard Borrell
- Marc Casas
year: '2024'
doi: 10.1145/3625549.3658683
url: https://doi.org/10.1145/3625549.3658683
dblp_key: conf/hpdc/LautBC24
venue_name: HPDC
pages: 200-213
- title: 'SIMCoV-GPU: Accelerating an Agent-Based Model for Exascale'
authors:
- Kirtus G. Leyba
- Steven A. Hofmeyr
- Stephanie Forrest
- Judy L. Cannon
- Melanie E. Moses
year: '2024'
doi: 10.1145/3625549.3658692
url: https://doi.org/10.1145/3625549.3658692
dblp_key: conf/hpdc/LeybaHFCM24
venue_name: HPDC
pages: 322-333
- title: Near-Optimal Wafer-Scale Reduce
authors:
- Piotr Luczynski
- Lukas Gianinazzi
- Patrick Iff
- Leighton Wilson
- Daniele De Sensi
- Torsten Hoefler
year: '2024'
doi: 10.1145/3625549.3658693
url: https://doi.org/10.1145/3625549.3658693
dblp_key: conf/hpdc/LuczynskiGIWSH24
venue_name: HPDC
pages: 334-347
- title: 'ElasticRoom: Multi-Tenant DNN Inference Engine via Co-design with Resource-constrained
Compilation and Strong Priority Scheduling'
authors:
- Lixian Ma
- Haoruo Chen
- En Shao
- Leping Wang
- Quan Chen 0002
- Guangming Tan
year: '2024'
doi: 10.1145/3625549.3658654
url: https://doi.org/10.1145/3625549.3658654
dblp_key: conf/hpdc/MaCSW0T24
venue_name: HPDC
pages: 1-14
- title: Towards a Comprehensive Approach to Resource and Conflict Management in Cloud-Edge
Settings
authors:
- Jacopo Massa
year: '2024'
doi: 10.1145/3625549.3658829
url: https://doi.org/10.1145/3625549.3658829
dblp_key: conf/hpdc/Massa24
venue_name: HPDC
pages: 397-400
- title: Tutorial on Variational Quantum Algorithms for Resource Management in Cloud/Edge
Architectures
authors:
- Carlo Mastroianni
- Andrea Vinci
year: '2024'
doi: 10.1145/3625549.3660508
url: https://doi.org/10.1145/3625549.3660508
dblp_key: conf/hpdc/MastroianniV24
venue_name: HPDC
pages: 350-351
- title: 'DataStates-LLM: Lazy Asynchronous Checkpointing for Large Language Models'
authors:
- Avinash Maurya
- Robert Underwood
- M. Mustafa Rafique
- Franck Cappello
- Bogdan Nicolae
year: '2024'
doi: 10.1145/3625549.3658685
url: https://doi.org/10.1145/3625549.3658685
dblp_key: conf/hpdc/MauryaURCN24
venue_name: HPDC
pages: 227-239
- title: 'ADTopk: All-Dimension Top-k Compression for High-Performance Data-Parallel
DNN Training'
authors:
- Zhangqiang Ming
- Yuchong Hu
- Wenxiang Zhou
- Xinjue Zheng
- Chenxuan Yao
- Dan Feng 0001
year: '2024'
doi: 10.1145/3625549.3658678
url: https://doi.org/10.1145/3625549.3658678
dblp_key: conf/hpdc/MingHZZY024
venue_name: HPDC
pages: 135-147
- title: Full-Stack Revision of Memory and Data Management in PDES on Multi-Core Machines
authors:
- Federica Montesano
year: '2024'
doi: 10.1145/3625549.3658831
url: https://doi.org/10.1145/3625549.3658831
dblp_key: conf/hpdc/Montesano24
venue_name: HPDC
pages: 417-420
- title: Can Large Language Models Write Parallel Code?
authors:
- Daniel Nichols
- Joshua Hoke Davis
- Zhaojun Xie
- Arjun Rajaram
- Abhinav Bhatele
year: '2024'
doi: 10.1145/3625549.3658689
url: https://doi.org/10.1145/3625549.3658689
dblp_key: conf/hpdc/NicholsDXRB24
venue_name: HPDC
pages: 281-294
- title: Techniques for Efficient Fourier Transform Computation in Ultrasound Simulations
authors:
- Ondrej Olsak
- Jirí Jaros
year: '2024'
doi: 10.1145/3625549.3658825
url: https://doi.org/10.1145/3625549.3658825
dblp_key: conf/hpdc/OlsakJ24
venue_name: HPDC
pages: 361-363
- title: Accelerating Function-Centric Applications by Discovering, Distributing,
and Retaining Reusable Context in Workflow Systems
authors:
- Thanh Son Phung
- Colin Thomas
- Logan T. Ward
- Kyle Chard
- Douglas Thain
year: '2024'
doi: 10.1145/3625549.3658663
url: https://doi.org/10.1145/3625549.3658663
dblp_key: conf/hpdc/PhungTWCT24
venue_name: HPDC
pages: 122-134
- title: A Portable, Fast, DCT-based Compressor for AI Accelerators
authors:
- Milan Shah
- Xiaodong Yu 0001
- Sheng Di
- Michela Becchi
- Franck Cappello
year: '2024'
doi: 10.1145/3625549.3658662
url: https://doi.org/10.1145/3625549.3658662
dblp_key: conf/hpdc/Shah0DBC24
venue_name: HPDC
pages: 109-121
- title: 'CereSZ: Enabling and Scaling Error-bounded Lossy Compression on Cerebras
CS-2'
authors:
- Shihui Song
- Yafan Huang
- Peng Jiang 0004
- Xiaodong Yu 0001
- Weijian Zheng
- Sheng Di
- Qinglei Cao
- Yunhe Feng
- Zhen Xie
- Franck Cappello
year: '2024'
doi: 10.1145/3625549.3658691
url: https://doi.org/10.1145/3625549.3658691
dblp_key: conf/hpdc/SongHJ0ZDCFXC24
venue_name: HPDC
pages: 309-321
- title: 'ScaleDFS: Accelerating Decentralized and Private File Sharing via Scaling
Directed Acyclic Graph Processing'
authors:
- Mansub Song
- Lan Anh Nguyen
- Sunggon Kim
- Hyeonsang Eom
- Yongseok Son
year: '2024'
doi: 10.1145/3625549.3658690
url: https://doi.org/10.1145/3625549.3658690
dblp_key: conf/hpdc/SongNKES24
venue_name: HPDC
pages: 295-308
- title: Programming Tools for High-Performance Data Analysis
authors:
- Domenico Talia
- Paolo Trunfio
year: '2024'
doi: 10.1145/3625549.3660509
url: https://doi.org/10.1145/3625549.3660509
dblp_key: conf/hpdc/TaliaT24
venue_name: HPDC
pages: 352-355
- title: Fast, Accurate and Distributed Simulation of novel HPC systems incorporating
ARM and RISC-V CPUs
authors:
- Nikolaos Tampouratzis
- Ioannis Papaefstathiou
year: '2024'
doi: 10.1145/3625549.3658816
url: https://doi.org/10.1145/3625549.3658816
dblp_key: conf/hpdc/TampouratzisP24
venue_name: HPDC
pages: 389-392
- title: A runtime infrastructure for the Continuum of Computing
authors:
- Edoardo Tinto
- Tullio Vardanega
year: '2024'
doi: 10.1145/3625549.3658832
url: https://doi.org/10.1145/3625549.3658832
dblp_key: conf/hpdc/TintoV24
venue_name: HPDC
pages: 401-404
- title: 'FPBOXer: Efficient Input-Generation for Targeting Floating-Point Exceptions
in GPU Programs'
authors:
- Anh Tran
- Ignacio Laguna
- Ganesh Gopalakrishnan
year: '2024'
doi: 10.1145/3625549.3658660
url: https://doi.org/10.1145/3625549.3658660
dblp_key: conf/hpdc/TranLG24
venue_name: HPDC
pages: 83-93
- title: Seamless HW-accelerated AI serving in heterogeneous MEC Systems with AI@EDGE
authors:
- Achilleas Tzenetopoulos
- George Lentaris
- Aimilios Leftheriotis
- Panos Chrysomeris
- Javier Palomares
- Estefanía Coronado
- Raman Kazhamiakin
- Dimitrios Soudris
year: '2024'
doi: 10.1145/3625549.3658812
url: https://doi.org/10.1145/3625549.3658812
dblp_key: conf/hpdc/TzenetopoulosLL24
venue_name: HPDC
pages: 377-380
- title: 'EvoStore: Towards Scalable Storage of Evolving Learning Models'
authors:
- Robert Underwood
- Meghana Madhyastha
- Randal C. Burns
- Bogdan Nicolae
year: '2024'
doi: 10.1145/3625549.3658679
url: https://doi.org/10.1145/3625549.3658679
dblp_key: conf/hpdc/UnderwoodMBN24
venue_name: HPDC
pages: 148-159
- title: 'ETS: Deep Learning Training Iteration Time Prediction based on Execution
Trace Sliding Window'
authors:
- Zichao Yang
- Hao Guo
- Heng Wu 0001
- Yuewen Wu
- Hua Zhong 0007
- Wenbo Zhang 0006
- Chuan Zhou
- Yan Liu
year: '2024'
doi: 10.1145/3625549.3658658
url: https://doi.org/10.1145/3625549.3658658
dblp_key: conf/hpdc/YangGWW00ZL24
venue_name: HPDC
pages: 56-68
- title: 'Network Management and Orchestration with Data Engineering: A Practical
Guide'
authors:
- Engin Zeydan
- Josep Mangues
- Jorge Baranda
year: '2024'
doi: 10.1145/3625549.3661059
url: https://doi.org/10.1145/3625549.3661059
dblp_key: conf/hpdc/ZeydanMB24
venue_name: HPDC
pages: 356-357
- title: Proceedings of the 33rd International Symposium on High-Performance Parallel
and Distributed Computing, HPDC 2024, Pisa, Italy, June 3-7, 2024
authors:
- Patrizio Dazzi
- Gabriele Mencagli
- David K. Lowenthal
- Rosa M. Badia
year: '2024'
doi: 10.1145/3625549
url: https://doi.org/10.1145/3625549
dblp_key: conf/hpdc/2024
venue_name: HPDC
pages: null

View File

@@ -0,0 +1,115 @@
venue: HPDC
year: 2024
papers:
- title: Efficient all-to-all Collective Communication Schedules for Direct-connect
Topologies
authors:
- Prithwish Basu
- Liangyu Zhao
- Jason Fantl
- Siddharth Pal
- Arvind Krishnamurthy
- Joud Khoury
reason: "Derives near-optimal all-to-all collective communication schedules for direct-connect HPC topologies, directly improving bandwidth utilization in large-scale distributed systems."
- title: Reinforcement Learning-based Adaptive Mitigation of Uncorrected DRAM Errors
in the Field
authors:
- Isaac Boixaderas
- Sergi Moré
- Javier Bartolome
- David Vicente
- Petar Radojkovic
- Paul M. Carpenter
- Eduard Ayguadé
reason: "Applies reinforcement learning to dynamically mitigate uncorrected DRAM errors at production HPC scale, improving system reliability without sacrificing performance."
- title: 'IDT: Intelligent Data Placement for Multi-tiered Main Memory with Reinforcement
Learning'
authors:
- Juneseo Chang
- Wanju Doh
- Yaebin Moon
- Eojin Lee
- Jung Ho Ahn
reason: "Presents a reinforcement learning-driven runtime that automatically places data across heterogeneous memory tiers, reducing access latency in HPC nodes with complex memory hierarchies."
- title: 'FaaSKeeper: Learning from Building Serverless Services with ZooKeeper as
an Example'
authors:
- Marcin Copik
- Alexandru Calotoiu
- Pengyu Zhou
- Konstantin Taranov
- Torsten Hoefler
reason: "Reconstructs ZooKeeper as a fully serverless service and distills concrete design lessons for building stateful distributed coordination primitives on FaaS platforms."
- title: 'ESG: Pipeline-Conscious Efficient Scheduling of DNN Workflows on Serverless
Platforms with Shareable GPUs'
authors:
- Xinning Hui
- Yuanchao Xu 0001
- Zhishan Guo
- Xipeng Shen
reason: "Introduces a pipeline-aware scheduler that shares GPUs across serverless DNN workflow stages, substantially cutting end-to-end latency and GPU idle time."
- title: 'FASOP: Fast yet Accurate Automated Search for Optimal Parallelization of
Transformers on Heterogeneous GPU Clusters'
authors:
- Sunyeol Hwang
- Eungyeong Lee
- Hongseok Oh 0003
- Youngmin Yi
reason: "Provides a fast, model-driven search strategy that finds optimal tensor/pipeline/data parallelism configurations for transformer training on heterogeneous GPU clusters."
- title: Near-Optimal Wafer-Scale Reduce
authors:
- Piotr Luczynski
- Lukas Gianinazzi
- Patrick Iff
- Leighton Wilson
- Daniele De Sensi
- Torsten Hoefler
reason: "Designs and analyzes near-optimal Reduce collective algorithms tailored to wafer-scale interconnect topology, setting new performance bounds for next-generation HPC hardware."
- title: 'DataStates-LLM: Lazy Asynchronous Checkpointing for Large Language Models'
authors:
- Avinash Maurya
- Robert Underwood
- M. Mustafa Rafique
- Franck Cappello
- Bogdan Nicolae
reason: "Introduces lazy asynchronous checkpointing that overlaps LLM training with I/O, dramatically reducing checkpoint overhead on large-scale HPC storage systems."
- title: 'ADTopk: All-Dimension Top-k Compression for High-Performance Data-Parallel
DNN Training'
authors:
- Zhangqiang Ming
- Yuchong Hu
- Wenxiang Zhou
- Xinjue Zheng
- Chenxuan Yao
- Dan Feng 0001
reason: "Proposes an all-dimension top-k gradient sparsification scheme that reduces communication volume in data-parallel distributed training while preserving convergence quality."
- title: Accelerating Function-Centric Applications by Discovering, Distributing,
and Retaining Reusable Context in Workflow Systems
authors:
- Thanh Son Phung
- Colin Thomas
- Logan T. Ward
- Kyle Chard
- Douglas Thain
reason: "Introduces context reuse across scientific workflow tasks, allowing distributed workflow systems to cache and share intermediate computation artifacts and significantly reduce redundant work."
- title: 'CereSZ: Enabling and Scaling Error-bounded Lossy Compression on Cerebras
CS-2'
authors:
- Shihui Song
- Yafan Huang
- Peng Jiang 0004
- Xiaodong Yu 0001
- Weijian Zheng
- Sheng Di
- Qinglei Cao
- Yunhe Feng
- Zhen Xie
- Franck Cappello
reason: "Ports and scales error-bounded lossy compression to the Cerebras CS-2 wafer-scale engine, enabling significant data reduction for HPC scientific workloads on novel accelerator hardware."
- title: 'EvoStore: Towards Scalable Storage of Evolving Learning Models'
authors:
- Robert Underwood
- Meghana Madhyastha
- Randal C. Burns
- Bogdan Nicolae
reason: "Designs a storage system that efficiently manages the versioned, incrementally evolving checkpoints produced during large-scale distributed model training, reducing storage overhead and retrieval time."

View File

@@ -0,0 +1,719 @@
venue: HPDC
year: 2025
source: dblp
count: 53
papers:
- title: Towards a Federated Approach to Complex Digital Twins
authors:
- Hena Ahmed
- Daniel Crawl
- Ilkay Altintas
year: '2025'
doi: 10.1145/3731545.3744664
url: https://doi.org/10.1145/3731545.3744664
dblp_key: conf/hpdc/AhmedCA25
venue_name: HPDC
pages: 49:1-49:5
- title: 'Flux Emulator: First Insights into Optimizing Scheduling for Exascale HPC'
authors:
- W. Jay Ashworth
- Ian Lumsden
- Jim Garlick
- Mark Grondona
- Olga Pearce
- Stephanie Brink
- Dewi Yokelson
- Daniel Milroy
- Tapasya Patki
- Thomas Scogland
- Michela Taufer
year: '2025'
doi: 10.1145/3731545.3735121
url: https://doi.org/10.1145/3731545.3735121
dblp_key: conf/hpdc/AshworthLGGPBYM25
venue_name: HPDC
pages: 32:1-32:2
- title: Assigning Cartesian grid area to processes
authors:
- Candice Astier
- Devan Sohier
- Antoine Capra
year: '2025'
doi: 10.1145/3731545.3736816
url: https://doi.org/10.1145/3731545.3736816
dblp_key: conf/hpdc/AstierSC25
venue_name: HPDC
pages: 35:1-35:5
- title: High-level quantum algorithm programming using Silq
authors:
- Viktorija Bezganovic
- Marco Lewis
- Sadegh Soudjani
- Paolo Zuliani
year: '2025'
doi: 10.1145/3731545.3744152
url: https://doi.org/10.1145/3731545.3744152
dblp_key: conf/hpdc/BezganovicLSZ25
venue_name: HPDC
pages: 46:1-46:11
- title: Efficient and Cost-Effective HPC on the Cloud
authors:
- Aditya Bhosale
- Laxmikant V. Kalé
- Sara Kokkila Schumacher
year: '2025'
doi: 10.1145/3731545.3744667
url: https://doi.org/10.1145/3731545.3744667
dblp_key: conf/hpdc/BhosaleKS25
venue_name: HPDC
pages: 52:1-52:5
- title: Can Large Language Models Predict Parallel Code Performance?
authors:
- Gregory Bolet
- Giorgis Georgakoudis
- Harshitha Menon
- Konstantinos Parasyris
- Niranjan Hasabnis
- Hayden Estes
- Kirk W. Cameron
- Gal Oren 0001
year: '2025'
doi: 10.1145/3731545.3743645
url: https://doi.org/10.1145/3731545.3743645
dblp_key: conf/hpdc/BoletGMPHEC025
venue_name: HPDC
pages: 41:1-41:6
- title: On Matching in Multipartite Quantum Routers
authors:
- Dagmar Bruß
- Luis Gindorf
- Julia Kunzelmann
- Christian Laußmann
- Jörg Rothe
year: '2025'
doi: 10.1145/3731545.3744148
url: https://doi.org/10.1145/3731545.3744148
dblp_key: conf/hpdc/BrussGKLR25
venue_name: HPDC
pages: 42:1-42:10
- title: Quantum-Based SMT Solving for String Theory
authors:
- Beatrice Casey
- Joanna C. S. Santos
- Andrew Hennessee
year: '2025'
doi: 10.1145/3731545.3744151
url: https://doi.org/10.1145/3731545.3744151
dblp_key: conf/hpdc/CaseySH25
venue_name: HPDC
pages: 45:1-45:8
- title: Multi-Node Spot Instances Availability Score Collection System
authors:
- Sungkyu Cheon
- Kyumin Kim
- Kyunghwan Kim
- Moohyun Song
- Kyungyong Lee
year: '2025'
doi: 10.1145/3731545.3735122
url: https://doi.org/10.1145/3731545.3735122
dblp_key: conf/hpdc/CheonKKSL25
venue_name: HPDC
pages: 33:1-33:2
- title: 'BanditWare: A Contextual Bandit-based Framework for Hardware Prediction'
authors:
- Tainã Coleman
- Hena Ahmed
- Ravi Shende
- Ismael Pérez
- Ilkay Altintas
year: '2025'
doi: 10.1145/3731545.3743643
url: https://doi.org/10.1145/3731545.3743643
dblp_key: conf/hpdc/ColemanASPA25
venue_name: HPDC
pages: 40:1-40:6
- title: 'Adaptive GPU Power Capping: Balancing Energy Efficiency, Thermal Control
and Performance'
authors:
- Tanish Desai
- Jainam Shah
- Gargi Alavani
- Snehanshu Saha
- Santonu Sarkar
year: '2025'
doi: 10.1145/3731545.3735119
url: https://doi.org/10.1145/3731545.3735119
dblp_key: conf/hpdc/DesaiSASS25
venue_name: HPDC
pages: 30:1-30:3
- title: 'ModelX : A Novel Transfer Learning Approach Across Heterogeneous Datasets'
authors:
- Arunavo Dey
- Neil Antony
- Aakash Raj Dhakal
- Kowshik Thopalli
- Jayaraman J. Thiagarajan
- Tapasya Patki
- Aniruddha Marathe
- Tom Scogland
- Jae-Seung Yeom
- Tanzima Z. Islam
year: '2025'
doi: 10.1145/3731545.3731593
url: https://doi.org/10.1145/3731545.3731593
dblp_key: conf/hpdc/DeyADTTPMSYI25
venue_name: HPDC
pages: 6:1-6:13
- title: Parameterized Algorithms for Non-uniform All-to-all
authors:
- Ke Fan
- Jens Domke
- Seydou Ba
- Sidharth Kumar
year: '2025'
doi: 10.1145/3731545.3731590
url: https://doi.org/10.1145/3731545.3731590
dblp_key: conf/hpdc/FanDBK25
venue_name: HPDC
pages: 14:1-14:13
- title: 'Qutes: A High-Level Quantum Programming Language for Simplified Quantum
Computing'
authors:
- Simone Faro
- Francesco Pio Marino
- Gabriele Messina 0002
year: '2025'
doi: 10.1145/3731545.3744153
url: https://doi.org/10.1145/3731545.3744153
dblp_key: conf/hpdc/FaroM025
venue_name: HPDC
pages: 47:1-47:9
- title: Scaling Grover's Search for Large Solution Spaces
authors:
- Simone Faro
- Francesco Pio Marino
year: '2025'
doi: 10.1145/3731545.3744149
url: https://doi.org/10.1145/3731545.3744149
dblp_key: conf/hpdc/FaroM25
venue_name: HPDC
pages: 43:1-43:8
- title: 'Optimizing Data Distribution and Kernel Performance for Efficient Training
of Chemistry Foundation Models: A Case Study with MACE'
authors:
- Jesun Sahariar Firoz
- Franco Pellegrini
- Mario Geiger
- Darren Hsu
- Jenna A. Bilbrey
- Han-Yi Chou
- Maximilian Stadler
- Markus Höhnerbach
- Tingyu Wang 0001
- Dejun Lin
- Emine Küçükbenli
- Henry W. Sprueill
- Ilyes Batatia
- Sotiris S. Xantheas
- MalSoon Lee
- Christopher J. Mundy
- Gábor Csányi
- Justin S. Smith
- Ponnuswamy Sadayappan
- Sutanay Choudhury
year: '2025'
doi: 10.1145/3731545.3731594
url: https://doi.org/10.1145/3731545.3731594
dblp_key: conf/hpdc/FirozPGHBCSHWLK25
venue_name: HPDC
pages: 8:1-8:13
- title: 'PathFence: Reducing Cross-Path Dependencies in Microservices'
authors:
- Xuhang Gu
- Qingyang Wang 0001
year: '2025'
doi: 10.1145/3731545.3731583
url: https://doi.org/10.1145/3731545.3731583
dblp_key: conf/hpdc/Gu025
venue_name: HPDC
pages: 17:1-17:13
- title: 'SibylOpt: Managing Green Data Centers Using Off-Online Deep Reinforcement
Learning'
authors:
- Ning Gu 0004
- Kuo Zhang
- Thu D. Nguyen
- Peijian Wang
- Tania Lorido-Botran
year: '2025'
doi: 10.1145/3731545.3735123
url: https://doi.org/10.1145/3731545.3735123
dblp_key: conf/hpdc/GuZNWL25
venue_name: HPDC
pages: 34:1-34:2
- title: 'LegoIndex: A Scalable and Modular Indexing Framework for Efficient Analysis
of Extreme-Scale Particle Data'
authors:
- Chang Guo
- Ning Yan 0002
- Lipeng Wan 0001
- Zhichao Cao 0002
year: '2025'
doi: 10.1145/3731545.3731591
url: https://doi.org/10.1145/3731545.3731591
dblp_key: conf/hpdc/GuoYW025
venue_name: HPDC
pages: 25:1-25:14
- title: 'FluidFaaS: A Dynamic Pipelined Solution for Serverless Computing with Strong
Isolation-based GPU Sharing'
authors:
- Xinning Hui
- Yuanchao Xu 0001
- Xipeng Shen
year: '2025'
doi: 10.1145/3731545.3731580
url: https://doi.org/10.1145/3731545.3731580
dblp_key: conf/hpdc/Hui0S25
venue_name: HPDC
pages: 18:1-18:14
- title: 'DPU-KV: On the Benefits of DPU Offloading for In-Memory Key-Value Stores
at the Edge'
authors:
- Arjun Kashyap
- Yuke Li 0003
- Xiaoyi Lu 0001
year: '2025'
doi: 10.1145/3731545.3731571
url: https://doi.org/10.1145/3731545.3731571
dblp_key: conf/hpdc/KashyapLL25
venue_name: HPDC
pages: 11:1-11:14
- title: Performance Evaluation of Machine Learning Applications Using WebAssembly
Across Different Programming Languages
authors:
- Sallar Khan
- Tania Malik
- Khalid Hasanov
year: '2025'
doi: 10.1145/3731545.3736817
url: https://doi.org/10.1145/3731545.3736817
dblp_key: conf/hpdc/KhanMH25
venue_name: HPDC
pages: 36:1-36:5
- title: Advancing the GEOtiled Framework Through Scalable Terrain Parameter Computation
authors:
- Gabriel Laboy
- Paula Olaya
- Jack Marquez
- Michael Sutherlin
- Rodrigo Vargas
- Michela Taufer
year: '2025'
doi: 10.1145/3731545.3735117
url: https://doi.org/10.1145/3731545.3735117
dblp_key: conf/hpdc/LaboyOMSVT25
venue_name: HPDC
pages: 28:1-28:2
- title: Advancing Scientific Data Compression via Cross-Field Prediction
authors:
- Youyuan Liu
- Wenqi Jia 0003
- Taolue Yang
- Bo Jiang
- Miao Yin
- Sian Jin
year: '2025'
doi: 10.1145/3731545.3731592
url: https://doi.org/10.1145/3731545.3731592
dblp_key: conf/hpdc/Liu0YJYJ25
venue_name: HPDC
pages: 13:1-13:12
- title: 'F3: An FPGA-accelerated FaaS Framework'
authors:
- Charalampos Mainas
- Martin Lambeck
- Bruno Scheufler
- Laurent Bindschaedler
- Atsushi Koshiba
- Pramod Bhatotia
year: '2025'
doi: 10.1145/3731545.3731582
url: https://doi.org/10.1145/3731545.3731582
dblp_key: conf/hpdc/MainasLSBKB25
venue_name: HPDC
pages: 16:1-16:16
- title: 'On Optimizing Checkpoint Restoration for HPC Applications: Leveraging Merkle
Trees and Asynchronous I/O'
authors:
- Zackary Malkmus
- Nigel Tan
- Ian Lumsden
- Kevin Assogba
- M. Mustafa Rafique
- Bogdan Nicolae
- Michela Taufer
year: '2025'
doi: 10.1145/3731545.3735116
url: https://doi.org/10.1145/3731545.3735116
dblp_key: conf/hpdc/MalkmusTLARNT25
venue_name: HPDC
pages: 27:1-27:2
- title: Factors Impacting I/O Time Proportion in AI Workloads
authors:
- Zoya Masih
- Radita Liem
- Julian M. Kunkel
year: '2025'
doi: 10.1145/3731545.3736815
url: https://doi.org/10.1145/3731545.3736815
dblp_key: conf/hpdc/MasihLK25
venue_name: HPDC
pages: 37:1-37:5
- title: Thicket Workflow for Classifying Parallel Sorting Algorithms
authors:
- Michael McKinsey
- Stephanie Brink
- Stephanie Lam
- Dewi Yokelson
- Olga Pearce
year: '2025'
doi: 10.1145/3731545.3736814
url: https://doi.org/10.1145/3731545.3736814
dblp_key: conf/hpdc/McKinseyBLYP25
venue_name: HPDC
pages: 38:1-38:5
- title: 'FloatGuard: Efficient Whole-Program Detection of Floating-Point Exceptions
in AMD GPUs'
authors:
- Dolores Miao
- Ignacio Laguna
- Cindy Rubio-González
year: '2025'
doi: 10.1145/3731545.3731586
url: https://doi.org/10.1145/3731545.3731586
dblp_key: conf/hpdc/MiaoLR25
venue_name: HPDC
pages: 2:1-2:12
- title: 'SAFusion: Efficient Tensor Fusion with Sparsification Ahead for High-Performance
Distributed DNN Training'
authors:
- Zhangqiang Ming
- Yuchong Hu
- Xinjue Zheng
- Wenxiang Zhou
- Dan Feng 0001
year: '2025'
doi: 10.1145/3731545.3731581
url: https://doi.org/10.1145/3731545.3731581
dblp_key: conf/hpdc/MingHZZ025
venue_name: HPDC
pages: 5:1-5:14
- title: A Quantum Virtual Machine for Execution of Oracles
authors:
- Ulrik De Muelenaere
year: '2025'
doi: 10.1145/3731545.3744150
url: https://doi.org/10.1145/3731545.3744150
dblp_key: conf/hpdc/Muelenaere25
venue_name: HPDC
pages: 44:1-44:8
- title: 'RAPTOR: Reconfigurable Advanced Platform for Transdisciplinary Open Research'
authors:
- Hamed Najafi
- Pratik Poudel
- Kiavash Bahreini
- Julio Ibarra
- Fahad Saeed
- Yuepeng Li
- Jayantha Obeysekera
- Jason Liu 0001
year: '2025'
doi: 10.1145/3731545.3744665
url: https://doi.org/10.1145/3731545.3744665
dblp_key: conf/hpdc/NajafiPBISLO025
venue_name: HPDC
pages: 50:1-50:5
- title: 'HYPERF: End-to-End Autotuning Framework for High-Performance Computing'
authors:
- Juseong Park
- Yongwon Shin
- Junghyun Lee
- Junseo Lee
- Juyeon Kim
- Oh-Kyoung Kwon
- Hyojin Sung
year: '2025'
doi: 10.1145/3731545.3731588
url: https://doi.org/10.1145/3731545.3731588
dblp_key: conf/hpdc/ParkSLLKKS25
venue_name: HPDC
pages: 20:1-20:14
- title: 'LiteForm: Lightweight and Automatic Format Composition for Sparse Matrix-Matrix
Multiplication on GPUs'
authors:
- Zhen Peng
- Polykarpos Thomadakis
- Jacques A. Pienaar
- Gokcen Kestor
year: '2025'
doi: 10.1145/3731545.3731574
url: https://doi.org/10.1145/3731545.3731574
dblp_key: conf/hpdc/PengTPK25
venue_name: HPDC
pages: 3:1-3:14
- title: 'XPF: Agentic AI System for Business Workflow Automation'
authors:
- Kunal Rao
- Giuseppe Coviello
- Gennaro Mellone
- Ciro Giuseppe De Vita
- Srimat Chakradhar
year: '2025'
doi: 10.1145/3731545.3743644
url: https://doi.org/10.1145/3731545.3743644
dblp_key: conf/hpdc/RaoCMVC25
venue_name: HPDC
pages: 39:1-39:6
- title: 'Grudon: A System for Deploying Graph Workloads on Disaggregated Architectures
with Near-Data Processing'
authors:
- Vishal Rao
- Nikhil Ram Shashidhar
- Suyeon Lee
- Ada Gavrilovska
year: '2025'
doi: 10.1145/3731545.3731585
url: https://doi.org/10.1145/3731545.3731585
dblp_key: conf/hpdc/RaoSLG25
venue_name: HPDC
pages: 19:1-19:14
- title: 'Rusty-Cracker: A Multi-core Connected Components Library in Rust'
authors:
- Davide Rucci
- Daniele Sampietro
- Emanuele Carlini 0001
- Matteo Mordacchini
- Patrizio Dazzi
year: '2025'
doi: 10.1145/3731545.3744334
url: https://doi.org/10.1145/3731545.3744334
dblp_key: conf/hpdc/RucciSCMD25
venue_name: HPDC
pages: 48:1-48:5
- title: Building Flexible Physics-Informed Neural Networks with Fast Fourier Transform
Analysis
authors:
- Reem Shehayib
- Jayden Parker Vap
- Peter M. Kogge
year: '2025'
doi: 10.1145/3731545.3744666
url: https://doi.org/10.1145/3731545.3744666
dblp_key: conf/hpdc/ShehayibVK25
venue_name: HPDC
pages: 51:1-51:5
- title: 'AutoSSD: CXL-Enhanced Autonomous SSDs for Low Tail Latency'
authors:
- Mingyao Shen
- Suyash Mahar
- Heewoo Kim
- Joseph Izraelevitz
- Steven Swanson
year: '2025'
doi: 10.1145/3731545.3731579
url: https://doi.org/10.1145/3731545.3731579
dblp_key: conf/hpdc/ShenMKIS25
venue_name: HPDC
pages: 10:1-10:13
- title: 'Bringing Differential Privacy to HPC: Privacy-Preserving Transformations
of HPC Traces'
authors:
- Ana Luisa Veroneze Solórzano
- Rohan Basu Roy
- Benjamin Schwaller
- Sara Petra Walton
- Jim M. Brandt
- Devesh Tiwari
year: '2025'
doi: 10.1145/3731545.3731573
url: https://doi.org/10.1145/3731545.3731573
dblp_key: conf/hpdc/SolorzanoRSWBT25
venue_name: HPDC
pages: 21:1-21:13
- title: 'FT2: First-Token-Inspired Online Fault Tolerance on Critical Layers for
Generative Large Language Models'
authors:
- Yu Sun
- Zhu Zhu
- Cherish Mulpuru
- Roberto Gioiosa
- Zhao Zhang 0007
- Bo Fang 0002
- Lishan Yang 0001
year: '2025'
doi: 10.1145/3731545.3731570
url: https://doi.org/10.1145/3731545.3731570
dblp_key: conf/hpdc/SunZMG00Y25
venue_name: HPDC
pages: 7:1-7:14
- title: Optimization of GNN Training Through Half-precision
authors:
- Arnab Kanti Tarafder
- Yidong Gong
- Pradeep Kumar
year: '2025'
doi: 10.1145/3731545.3731575
url: https://doi.org/10.1145/3731545.3731575
dblp_key: conf/hpdc/TarafderGK25
venue_name: HPDC
pages: 4:1-4:13
- title: 'SpeedLLM: An FPGA Co-design of Large Language Model Inference Accelerator'
authors:
- Peipei Wang
- Wu Guan
- Liping Liang
- Zhijun Wang
- Hanqing Luo
- Zhibin Zhang
year: '2025'
doi: 10.1145/3731545.3735115
url: https://doi.org/10.1145/3731545.3735115
dblp_key: conf/hpdc/WangGLWLZ25
venue_name: HPDC
pages: 26:1-26:3
- title: Virtualization So Light, it Floats! Accelerating Floating Point Virtualization
authors:
- Nick Wanninger
- Nadharm Dhiantravan
- Peter A. Dinda
year: '2025'
doi: 10.1145/3731545.3731584
url: https://doi.org/10.1145/3731545.3731584
dblp_key: conf/hpdc/WanningerDD25
venue_name: HPDC
pages: 1:1-1:13
- title: 'Top-Down SBP: Turning Graph Clustering Upside Down'
authors:
- Frank Wanye
- Vitaliy Gleyzer
- Edward K. Kao
- Wu-chun Feng
year: '2025'
doi: 10.1145/3731545.3731589
url: https://doi.org/10.1145/3731545.3731589
dblp_key: conf/hpdc/WanyeGKF25
venue_name: HPDC
pages: 15:1-15:13
- title: 'TSUE: A Two-Stage Data Update Method for an Erasure Coded Cluster File System'
authors:
- Zheng Wei
- Jing Xing
- Yida Gu
- Wenjing Huang 0002
- Dong Dai 0001
- Guangming Tan
- Dingwen Tao
year: '2025'
doi: 10.1145/3731545.3731577
url: https://doi.org/10.1145/3731545.3731577
dblp_key: conf/hpdc/WeiXGHDTT25
venue_name: HPDC
pages: 9:1-9:14
- title: 'CarbonEdge: Leveraging Mesoscale Spatial Carbon-Intensity Variations for
Low Carbon Edge Computing'
authors:
- Li Wu
- Walid A. Hanafy
- Abel Souza
- Khai Nguyen
- Jan Harkes
- David Irwin 0001
- Mahadev Satyanarayanan
- Prashant J. Shenoy
year: '2025'
doi: 10.1145/3731545.3731576
url: https://doi.org/10.1145/3731545.3731576
dblp_key: conf/hpdc/WuHSNHISS25
venue_name: HPDC
pages: 12:1-12:13
- title: 'IPComp: Interpolation Based Progressive Lossy Compression for Scientific
Applications'
authors:
- Zhuoxun Yang
- Sheng Di
- Longtao Zhang
- Ruoyu Li
- Ximiao Li
- Jiajun Huang 0001
- Jinyang Liu 0003
- Franck Cappello
- Kai Zhao 0008
year: '2025'
doi: 10.1145/3731545.3731578
url: https://doi.org/10.1145/3731545.3731578
dblp_key: conf/hpdc/YangDZLL00C025
venue_name: HPDC
pages: 24:1-24:14
- title: 'Refactoring TEZip: Integrating Python-Based Predictive Compression into
an HPC C++/LibTorch Environment'
authors:
- Mina Yousef
- Amarjit Singh
- Kento Sato
year: '2025'
doi: 10.1145/3731545.3735120
url: https://doi.org/10.1145/3731545.3735120
dblp_key: conf/hpdc/YousefSS25
venue_name: HPDC
pages: 31:1-31:2
- title: Weight-Sharing NAS with Architecture-Agnostic Intermediate Representation
authors:
- Sixing Yu
- Arya Mazaheri
- Ali Jannesari
year: '2025'
doi: 10.1145/3731545.3731587
url: https://doi.org/10.1145/3731545.3731587
dblp_key: conf/hpdc/YuMJ25
venue_name: HPDC
pages: 22:1-22:13
- title: 'Out-of-Core Parallel Spatial Join Outperforming In-Memory Systems: A BFS-DFS
Hybrid Approach'
authors:
- Lyuheng Yuan
- Da Yan 0001
- Akhlaque Ahmad
- Jiao Han
- Saugat Adhikari
- Yang Zhou 0001
year: '2025'
doi: 10.1145/3731545.3731572
url: https://doi.org/10.1145/3731545.3731572
dblp_key: conf/hpdc/Yuan0AHAZ25
venue_name: HPDC
pages: 23:1-23:14
- title: Understanding Error Sensitivity in Checkpointing for Linear System Solvers
authors:
- Bohan Zhang
- Yafan Huang
- Jerry Li
- Guanpeng Li
year: '2025'
doi: 10.1145/3731545.3735118
url: https://doi.org/10.1145/3731545.3735118
dblp_key: conf/hpdc/ZhangHLL25
venue_name: HPDC
pages: 29:1-29:3
- title: Proceedings of the 34th International Symposium on High-Performance Parallel
and Distributed Computing, HPDC 2025, University of Notre Dame Conference Facilities,
Notre Dame, IN, USA, July 20-23, 2025
authors:
- Robert W. Wisniewski
- Ivona Brandic
year: '2025'
doi: 10.1145/3731545
url: https://doi.org/10.1145/3731545
dblp_key: conf/hpdc/2025
venue_name: HPDC
pages: null

View File

@@ -0,0 +1,55 @@
venue: HPDC
year: 2025
date: "2025-07-20"
tags: [hpc, distributed-systems, networking, storage, scheduling, cloud-hpc, performance]
selected:
- dblp_key: "conf/hpdc/FanDBK25"
title: "Parameterized Algorithms for Non-uniform All-to-all"
tldr: "Introduces parameterized algorithms that adapt non-uniform all-to-all collective communication to heterogeneous network topologies, reducing message contention and improving throughput."
why_notable: "Non-uniform all-to-all is a performance bottleneck in many HPC applications; topology-aware parameterization directly benefits MPI implementations on dragonfly and fat-tree networks at scale."
- dblp_key: "conf/hpdc/KashyapLL25"
title: "DPU-KV: On the Benefits of DPU Offloading for In-Memory Key-Value Stores at the Edge"
tldr: "Offloads key-value store operations to Data Processing Units (DPUs) over RDMA to reduce CPU overhead and tail latency in edge deployments."
why_notable: "DPU offloading is an emerging paradigm for network-attached smart NICs in HPC clusters; this work provides concrete performance analysis showing when and how much offloading helps, informing future RDMA-based storage designs."
- dblp_key: "conf/hpdc/WeiXGHDTT25"
title: "TSUE: A Two-Stage Data Update Method for an Erasure Coded Cluster File System"
tldr: "Proposes a two-stage update scheme for erasure-coded parallel file systems that decouples the logging and parity-update phases to cut write amplification and I/O latency."
why_notable: "Erasure coding is increasingly used in large-scale HPC storage to replace replication, but update overhead remains a bottleneck; TSUE addresses a core pain point for Lustre- and GPFS-class parallel file systems."
- dblp_key: "conf/hpdc/GuoYW025"
title: "LegoIndex: A Scalable and Modular Indexing Framework for Efficient Analysis of Extreme-Scale Particle Data"
tldr: "Presents a composable, multi-level indexing framework for particle simulation datasets that enables efficient query processing at extreme scale without requiring full dataset scans."
why_notable: "Scientific particle simulations at exascale generate data volumes that overwhelm traditional post-processing pipelines; LegoIndex's modular design allows it to be adapted across different storage backends and query patterns commonly seen in DOE workloads."
- dblp_key: "conf/hpdc/YangDZLL00C025"
title: "IPComp: Interpolation Based Progressive Lossy Compression for Scientific Applications"
tldr: "Introduces interpolation-driven progressive lossy compression that lets users trade accuracy for compression ratio at query time rather than at write time, without re-compressing stored data."
why_notable: "Progressive reconstruction is a long-sought capability for HPC I/O; IPComp achieves it with competitive compression ratios and builds on the widely used SZ/ZFP lineage, making adoption in existing scientific workflows straightforward."
- dblp_key: "conf/hpdc/Liu0YJYJ25"
title: "Advancing Scientific Data Compression via Cross-Field Prediction"
tldr: "Exploits correlations between different physical fields in multi-field scientific datasets to improve lossy compression ratios beyond what single-field methods can achieve."
why_notable: "Multi-field simulations (climate, combustion, fusion) dominate HPC storage consumption; cross-field prediction represents a principled, generally applicable step change in compression efficiency for these workloads."
- dblp_key: "conf/hpdc/AshworthLGGPBYM25"
title: "Flux Emulator: First Insights into Optimizing Scheduling for Exascale HPC"
tldr: "Presents an emulation infrastructure for the Flux workload manager that enables scheduling algorithm evaluation at exascale node counts without requiring access to a full exascale machine."
why_notable: "Validating schedulers at exascale is otherwise infeasible before systems exist; Flux Emulator directly supports the scheduling research needed to maximize utilization of Frontier- and Aurora-class systems."
- dblp_key: "conf/hpdc/ParkSLLKKS25"
title: "HYPERF: End-to-End Autotuning Framework for High-Performance Computing"
tldr: "Delivers an end-to-end autotuning framework that jointly optimizes compiler flags, runtime parameters, and problem-specific configurations for HPC applications through structured search."
why_notable: "Manual tuning of HPC codes for new architectures is expensive and error-prone; HYPERF's end-to-end scope distinguishes it from prior tools that target only one layer of the software stack, offering broader applicability across the HPC software ecosystem."
- dblp_key: "conf/hpdc/BhosaleKS25"
title: "Efficient and Cost-Effective HPC on the Cloud"
tldr: "Demonstrates how Charm++-based adaptive runtime techniques—load balancing, dynamic over-decomposition, and message-driven execution—can recover near-on-premises HPC performance on cloud instances despite higher network variability."
why_notable: "Cloud-HPC convergence is a major community priority as on-premises clusters face procurement delays; this paper provides a practitioner-oriented analysis of which runtime adaptations deliver the best performance-per-dollar on AWS and Azure."
- dblp_key: "conf/hpdc/SolorzanoRSWBT25"
title: "Bringing Differential Privacy to HPC: Privacy-Preserving Transformations of HPC Traces"
tldr: "Applies differential privacy mechanisms to HPC job and performance traces, enabling centers to share workload data for research without exposing sensitive user or application information."
why_notable: "Sharing HPC traces is critical for reproducible scheduling and performance research but is often blocked by privacy concerns; this work provides a rigorous, deployable solution that could unlock a significant new supply of public HPC datasets."

View File

@@ -0,0 +1,674 @@
venue: IC
year: 2024
source: dblp
count: 52
papers:
- title: A Grateful Farewell and a Warm Welcome
authors:
- George Pallis 0001
year: '2024'
doi: 10.1109/MIC.2024.3353468
url: https://doi.org/10.1109/MIC.2024.3353468
dblp_key: journals/internet/000124
venue_name: IEEE Internet Comput.
pages: '5'
- title: Digital Transformation in Remote Learning and Work - An Externality of the
COVID-19 Pandemic
authors:
- Kevin K. W. Ho 0001
- Shaoyu Ye
- Dickson K. W. Chiu
- Takuya Sekiguchi
year: '2024'
doi: 10.1109/MIC.2023.3332887
url: https://doi.org/10.1109/MIC.2023.3332887
dblp_key: journals/internet/0001YCS24
venue_name: IEEE Internet Comput.
pages: 10-17
- title: The Dark Crypto World!
authors:
- Muhammad Abulaish
- Harshita Dalal
year: '2024'
doi: 10.1109/MIC.2024.3373706
url: https://doi.org/10.1109/MIC.2024.3373706
dblp_key: journals/internet/AbulaishD24
venue_name: IEEE Internet Comput.
pages: 26-36
- title: 'Alignment Studio: Aligning Large Language Models to Particular Contextual
Regulations'
authors:
- Swapnaja Achintalwar
- Ioana Baldini
- Djallel Bouneffouf 0001
- Joan Byamugisha
- Maria Chang 0001
- Pierre L. Dognin
- Eitan Farchi
- Ndivhuwo Makondo
- Aleksandra Mojsilovic
- Manish Nagireddy
- Karthikeyan Natesan Ramamurthy
- Inkit Padhi
- Orna Raz
- Jesus Rios
- Prasanna Sattigeri
- Moninder Singh
- Siphiwe Thwala
- Rosario A. Uceda-Sosa
- Kush R. Varshney
year: '2024'
doi: 10.1109/MIC.2024.3453671
url: https://doi.org/10.1109/MIC.2024.3453671
dblp_key: journals/internet/AchintalwarBBBCDFMMNRPR24
venue_name: IEEE Internet Comput.
pages: 28-36
- title: The Role of Computer Science in Responsible AI Governance
authors:
- Virgílio A. F. Almeida
- Jussara M. Almeida
- Wagner Meira Jr.
year: '2024'
doi: 10.1109/MIC.2024.3388282
url: https://doi.org/10.1109/MIC.2024.3388282
dblp_key: journals/internet/AlmeidaAM24
venue_name: IEEE Internet Comput.
pages: 55-58
- title: 'Revisiting Trust Management in the Data Economy: A Road Map'
authors:
- Claudio A. Ardagna
- Nicola Bena
- Nadia Bennani
- Chirine Ghedira Guegan
- Nicolò Grecchi
- Genoveva Vargas-Solar
year: '2024'
doi: 10.1109/MIC.2024.3398403
url: https://doi.org/10.1109/MIC.2024.3398403
dblp_key: journals/internet/ArdagnaBBGGV24
venue_name: IEEE Internet Comput.
pages: 21-29
- title: Machine Learning Data Market Based on Multiagent Systems
authors:
- Hajar Baghcheband
- Carlos Soares
- Luís Paulo Reis
year: '2024'
doi: 10.1109/MIC.2024.3399049
url: https://doi.org/10.1109/MIC.2024.3399049
dblp_key: journals/internet/BaghchebandSR24
venue_name: IEEE Internet Comput.
pages: 7-13
- title: Empowering Database Learning Through Remote Educational Escape Rooms
authors:
- Enrique Barra
- Sonsoles López-Pernas
- Aldo Gordillo
- Alejandro Pozo
- Jose Andrés Muñoz-Arcentales
- Javier Conde
year: '2024'
doi: 10.1109/MIC.2023.3333199
url: https://doi.org/10.1109/MIC.2023.3333199
dblp_key: journals/internet/BarraLGPMC24
venue_name: IEEE Internet Comput.
pages: 18-25
- title: Requirements and Design Architecture for Digital Twin End-to-End Trustworthiness
authors:
- Nicola Bicocchi
- Mattia Fogli
- Carlo Giannelli
- Marco Picone
- Antonio Virdis
year: '2024'
doi: 10.1109/MIC.2024.3376439
url: https://doi.org/10.1109/MIC.2024.3376439
dblp_key: journals/internet/BicocchiFGPV24
venue_name: IEEE Internet Comput.
pages: 31-39
- title: 'AI Design: A Responsible Artificial Intelligence Framework for Prefilling
Impact Assessment Reports'
authors:
- Edyta Paulina Bogucka
- Marios Constantinides
- Sanja Scepanovic
- Daniele Quercia
year: '2024'
doi: 10.1109/MIC.2024.3451351
url: https://doi.org/10.1109/MIC.2024.3451351
dblp_key: journals/internet/BoguckaCSQ24
venue_name: IEEE Internet Comput.
pages: 37-45
- title: 'Softwarized Networks in the Age of Generative Artificial Intelligence: Use
Cases, Challenges, and Opportunities'
authors:
- Prasad Calyam
- Alexander Clemm
- Ashish Pandey
- Upasana Roy
- Alexander Keller
- Sajal K. Das 0001
- Kenneth L. Calvert
year: '2024'
doi: 10.1109/MIC.2024.3485954
url: https://doi.org/10.1109/MIC.2024.3485954
dblp_key: journals/internet/CalyamCPRKDC24
venue_name: IEEE Internet Comput.
pages: 68-76
- title: On Causality in Distributed Continuum Systems
authors:
- Víctor Casamayor-Pujol
- Boris Sedlak
- Praveen Kumar Donta
- Schahram Dustdar
year: '2024'
doi: 10.1109/MIC.2023.3344248
url: https://doi.org/10.1109/MIC.2023.3344248
dblp_key: journals/internet/CasamayorPujolSDD24
venue_name: IEEE Internet Comput.
pages: 57-64
- title: Toward a Programmable Humanizing Artificial Intelligence Through Scalable
Stance-Directed Architecture
authors:
- Yusuf Mücahit Çetinkaya
- Yeonjung Lee
- Emre Külah
- Ismail Hakki Toroslu
- Michael A. Cowan
- Hasan Davulcu
year: '2024'
doi: 10.1109/MIC.2024.3450090
url: https://doi.org/10.1109/MIC.2024.3450090
dblp_key: journals/internet/CetinkayaLKTCD24
venue_name: IEEE Internet Comput.
pages: 20-27
- title: 'Immersive Computing: What to Expect in a Decade?'
authors:
- Songqing Chen
- Bo Han 0001
- Yao Liu 0001
year: '2024'
doi: 10.1109/MIC.2024.3388808
url: https://doi.org/10.1109/MIC.2024.3388808
dblp_key: journals/internet/ChenHL24
venue_name: IEEE Internet Comput.
pages: 46-54
- title: 3-D Point Cloud Map Compression for Connected Intelligent Vehicles
authors:
- Youngjoon Choi
- Hannah Baek
- Jinseop Jeong
- Kanghee Kim
year: '2024'
doi: 10.1109/MIC.2023.3342793
url: https://doi.org/10.1109/MIC.2023.3342793
dblp_key: journals/internet/ChoiBJK24
venue_name: IEEE Internet Comput.
pages: 53-60
- title: Remembering David Mills (1938-2024)
authors:
- Steve Crang
- Vint Cerf
year: '2024'
doi: 10.1109/MIC.2024.3370448
url: https://doi.org/10.1109/MIC.2024.3370448
dblp_key: journals/internet/CrangC24
venue_name: IEEE Internet Comput.
pages: 73-75
- title: Distributed Federated Deep Learning in Clustered Internet of Things Wireless
Networks With Data Similarity-Based Client Participation
authors:
- Evangelia Fragkou 0001
- Eleftheria Chini
- Maria Papadopoulou 0008
- Dimitrios K. Papakostas
- Dimitrios Katsaros 0001
- Schahram Dustdar
year: '2024'
doi: 10.1109/MIC.2024.3439068
url: https://doi.org/10.1109/MIC.2024.3439068
dblp_key: journals/internet/FragkouCPPKD24
venue_name: IEEE Internet Comput.
pages: 53-61
- title: 'Potential of Zero-Touch Network Management in Industry 5.0: A Future Prospect'
authors:
- Abhishek Hazra
- Alakesh Kalita
- Mohan Gurusamy
- Dipak Kumar Sah
year: '2024'
doi: 10.1109/MIC.2024.3504553
url: https://doi.org/10.1109/MIC.2024.3504553
dblp_key: journals/internet/HazraKGS24
venue_name: IEEE Internet Comput.
pages: 45-52
- title: Power-Aware CPU Cap Mechanism in Serverless Computing Environments
authors:
- M. Reza HoseinyFarahabady
- Albert Y. Zomaya
year: '2024'
doi: 10.1109/MIC.2024.3513446
url: https://doi.org/10.1109/MIC.2024.3513446
dblp_key: journals/internet/HoseinyFarahabadyZ24
venue_name: IEEE Internet Comput.
pages: 29-36
- title: Serverless Computing
authors:
- Shadi Ibrahim
- Omer F. Rana
- Olivier Beaumont
- Xiaowen Chu 0001
year: '2024'
doi: 10.1109/MIC.2024.3524507
url: https://doi.org/10.1109/MIC.2024.3524507
dblp_key: journals/internet/IbrahimRBC24
venue_name: IEEE Internet Comput.
pages: 5-7
- title: 'Hierarchical Network Data Analytics Framework for 6G Network Automation:
Design and Implementation'
authors:
- Youbin Jeon
- Sangheon Pack
year: '2024'
doi: 10.1109/MIC.2024.3369939
url: https://doi.org/10.1109/MIC.2024.3369939
dblp_key: journals/internet/JeonP24
venue_name: IEEE Internet Comput.
pages: 38-46
- title: 'Remote Work and Gender Inequality: Unmasking the Challenges and Seeking
Solutions'
authors:
- Hem Chandra Joshi
- Sandeep Kumar 0004
year: '2024'
doi: 10.1109/MIC.2023.3335614
url: https://doi.org/10.1109/MIC.2023.3335614
dblp_key: journals/internet/Joshi024
venue_name: IEEE Internet Comput.
pages: 42-51
- title: 'ARASEC: Adaptive Resource Allocation and Model Training for Serverless Edge-Cloud
Computing'
authors:
- Dewant Katare
- Eduard Marin
- Nicolas Kourtellis
- Marijn Janssen
- Aaron Yi Ding
year: '2024'
doi: 10.1109/MIC.2024.3514670
url: https://doi.org/10.1109/MIC.2024.3514670
dblp_key: journals/internet/KatareMKJD24
venue_name: IEEE Internet Comput.
pages: 17-27
- title: 'Beyond Von Neumann in the Computing Continuum: Architectures, Applications,
and Future Directions'
authors:
- Dragi Kimovski
- Nishant Saurabh
- Matthijs Jansen
- Atakan Aral
- Auday Al-Dulaimy
- André B. Bondi
- Antonino Galletta
- Alessandro V. Papadopoulos
- Alexandru Iosup
- Radu Prodan
year: '2024'
doi: 10.1109/MIC.2023.3301010
url: https://doi.org/10.1109/MIC.2023.3301010
dblp_key: journals/internet/KimovskiSJAABGPIP24
venue_name: IEEE Internet Comput.
pages: 6-16
- title: Remote Learning and Work
authors:
- René F. Kizilcec
- John C. Mitchell
year: '2024'
doi: 10.1109/MIC.2023.3339941
url: https://doi.org/10.1109/MIC.2023.3339941
dblp_key: journals/internet/KizilcecM24
venue_name: IEEE Internet Comput.
pages: 7-9
- title: 'Common Metadata Framework: Integrated Framework for Trustworthy Artificial
Intelligence Pipelines'
authors:
- Ann Mary Justine Koomthanam
- Aalap Tripathy
- Sergey Serebryakov
- Gyanaranjan Nayak
- Martin Foltin
- Suparna Bhattacharya
year: '2024'
doi: 10.1109/MIC.2024.3377170
url: https://doi.org/10.1109/MIC.2024.3377170
dblp_key: journals/internet/KoomthanamTSNFB24
venue_name: IEEE Internet Comput.
pages: 37-44
- title: 'HeROsim: An Allocation and Scheduling Simulator for Evaluating Serverless
Orchestration Policies'
authors:
- Vincent Lannurien
- Laurent d'Orazio
- Olivier Barais
- Stéphane Paquelet
- Jalil Boukhobza
year: '2024'
doi: 10.1109/MIC.2024.3511332
url: https://doi.org/10.1109/MIC.2024.3511332
dblp_key: journals/internet/LannuriendBPB24
venue_name: IEEE Internet Comput.
pages: 8-16
- title: 'Enabling 6G and Beyond Network Functions From Space: Challenges and Opportunities'
authors:
- Lixin Liu
- Wei Liu 0192
- Yuanjie Li
- Hewu Li
year: '2024'
doi: 10.1109/MIC.2024.3359773
url: https://doi.org/10.1109/MIC.2024.3359773
dblp_key: journals/internet/LiuLLL24
venue_name: IEEE Internet Comput.
pages: 8-17
- title: Privacy-Preserving Recommendation Based on a Shuffled Federated Graph Neural
Network
authors:
- Qinbo Liu
- Lichen Yang
- Yang Liu 0039
- Jiaqi Deng
- Guorui Wu
year: '2024'
doi: 10.1109/MIC.2023.3349288
url: https://doi.org/10.1109/MIC.2023.3349288
dblp_key: journals/internet/LiuYLDW24
venue_name: IEEE Internet Comput.
pages: 17-24
- title: Are Remote Educational Escape Rooms Designed During the Pandemic Useful in
a Postpandemic Face-to-Face Setting?
authors:
- Daniel López-Fernández
- Aldo Gordillo
- Sonsoles López-Pernas
- Edmundo Tovar
year: '2024'
doi: 10.1109/MIC.2023.3336057
url: https://doi.org/10.1109/MIC.2023.3336057
dblp_key: journals/internet/Lopez-Fernandez24
venue_name: IEEE Internet Comput.
pages: 34-41
- title: 'Revisiting Edge AI: Opportunities and Challenges'
authors:
- Tobias Meuser
- Lauri Lovén
- Monowar Bhuyan
- Shishir G. Patil
- Schahram Dustdar
- Atakan Aral
- Suzan Bayhan
- Christian Becker 0001
- Eyal de Lara
- Aaron Yi Ding
- Janick Edinger
- James Gross
- Nitinder Mohan
- Andy D. Pimentel
- Etienne Rivière
- Henning Schulzrinne
- Pieter Simoens
- Gürkan Solmaz
- Michael Welzl
year: '2024'
doi: 10.1109/MIC.2024.3383758
url: https://doi.org/10.1109/MIC.2024.3383758
dblp_key: journals/internet/MeuserLBPDABBLDEGMPRSSS24
venue_name: IEEE Internet Comput.
pages: 49-59
- title: Special Issue on 6G Technologies and Applications
authors:
- Arvind Narayanan
- Mahesh K. Marina
- Vijay Gopalakrishnan
year: '2024'
doi: 10.1109/MIC.2024.3377948
url: https://doi.org/10.1109/MIC.2024.3377948
dblp_key: journals/internet/NarayananMG24
venue_name: IEEE Internet Comput.
pages: 6-7
- title: 'Adapting to Online and Remote Learning: Examining the Educational Assessment
Experiences of U.S. College Students Amidst COVID-19'
authors:
- Teresa M. Ober
- Ying Cheng 0004
year: '2024'
doi: 10.1109/MIC.2023.3334025
url: https://doi.org/10.1109/MIC.2023.3334025
dblp_key: journals/internet/Ober024
venue_name: IEEE Internet Comput.
pages: 26-33
- title: 'WebAssembly at the Edge: Benchmarking a Serverless Platform for Private
Edge Cloud Systems'
authors:
- Giuseppe De Palma
- Saverio Giallorenzo
- Jacopo Mauro
- Matteo Trentin
- Gianluigi Zavattaro
year: '2024'
doi: 10.1109/MIC.2024.3513035
url: https://doi.org/10.1109/MIC.2024.3513035
dblp_key: journals/internet/PalmaGMTZ24
venue_name: IEEE Internet Comput.
pages: 37-44
- title: 'Measuring AI Fairness in a Continuum Maintaining Nuances: A Robustness Case
Study'
authors:
- Kuniko Paxton
- Koorosh Aslansefat
- Dhavalkumar Thakker
- Yiannis Papadopoulos
year: '2024'
doi: 10.1109/MIC.2024.3450815
url: https://doi.org/10.1109/MIC.2024.3450815
dblp_key: journals/internet/PaxtonATP24
venue_name: IEEE Internet Comput.
pages: 11-19
- title: 'Service-Oriented Computing: A Trajectory for Research to 2030'
authors:
- Pierluigi Plebani
- Stefan Schulte 0002
- Damian Andrew Tamburri
- Schahram Dustdar
year: '2024'
doi: 10.1109/MIC.2023.3338908
url: https://doi.org/10.1109/MIC.2023.3338908
dblp_key: journals/internet/PlebaniSTD24
venue_name: IEEE Internet Comput.
pages: 59-63
- title: 'L26GC: Evolving the Low-Latency Core for Future Cellular Networks'
authors:
- Shixiong Qi
- K. K. Ramakrishnan
- Jyh-Cheng Chen
year: '2024'
doi: 10.1109/MIC.2024.3376655
url: https://doi.org/10.1109/MIC.2024.3376655
dblp_key: journals/internet/QiRC24
venue_name: IEEE Internet Comput.
pages: 29-36
- title: Open Experimental Measurements of Sub-6GHz Reconfigurable Intelligent Surfaces
authors:
- Marco Rossanese
- Placido Mursia
- Andres Garcia-Saavedra
- Vincenzo Sciancalepore
- Arash Asadi
- Xavier Costa-Pérez
year: '2024'
doi: 10.1109/MIC.2024.3376772
url: https://doi.org/10.1109/MIC.2024.3376772
dblp_key: journals/internet/RossaneseMGSAC24
venue_name: IEEE Internet Comput.
pages: 19-28
- title: Civilizing and Humanizing Artificial Intelligence in the Age of Large Language
Models
authors:
- Amit P. Sheth
- Kaushik Roy 0009
- Hemant Purohit
- Amitava Das 0001
year: '2024'
doi: 10.1109/MIC.2024.3444928
url: https://doi.org/10.1109/MIC.2024.3444928
dblp_key: journals/internet/ShethRPD24
venue_name: IEEE Internet Comput.
pages: 5-10
- title: Message from the Editor-In-Chief
authors:
- Weisong Shi
year: '2024'
doi: 10.1109/MIC.2024.3374908
url: https://doi.org/10.1109/MIC.2024.3374908
dblp_key: journals/internet/Shi24
venue_name: IEEE Internet Comput.
pages: '5'
- title: 'Digital-Twin-Driven Deception Platform: Vision and Way Forward'
authors:
- Sabah Suhail
- Mubashar Iqbal 0001
- Kieran McLaughlin
year: '2024'
doi: 10.1109/MIC.2024.3406188
url: https://doi.org/10.1109/MIC.2024.3406188
dblp_key: journals/internet/SuhailIM24
venue_name: IEEE Internet Comput.
pages: 40-47
- title: Privacy-Preserving Learning of Prediagnosis Models from Distributed Medical
Records
authors:
- Min Tang
- Ying Huang
- Guoqiang Deng
year: '2024'
doi: 10.1109/MIC.2024.3397314
url: https://doi.org/10.1109/MIC.2024.3397314
dblp_key: journals/internet/TangHD24
venue_name: IEEE Internet Comput.
pages: 47-56
- title: 'The Internet of Things in the Era of Generative AI: Vision and Challenges'
authors:
- Xin Wang 0120
- Zhongwei Wan
- Arvin Hekmati
- Mingyu Zong
- Samiul Alam
- Mi Zhang 0002
- Bhaskar Krishnamachari
year: '2024'
doi: 10.1109/MIC.2024.3443169
url: https://doi.org/10.1109/MIC.2024.3443169
dblp_key: journals/internet/WangWHZAZK24
venue_name: IEEE Internet Comput.
pages: 57-64
- title: Knowledge Graphs of Driving Scenes to Empower the Emerging Capabilities of
Neurosymbolic AI
authors:
- Ruwan Wickramarachchi
- Cory A. Henson
- Amit P. Sheth
year: '2024'
doi: 10.1109/MIC.2024.3494972
url: https://doi.org/10.1109/MIC.2024.3494972
dblp_key: journals/internet/WickramarachchiHS24
venue_name: IEEE Internet Comput.
pages: 62-67
- title: Data Management Challenges in Blockchain-Based Applications
authors:
- Stanly Wilson
- Kwabena Adu-Duodu
- Yinhao Li
- Ellis Solaiman
- Omer Farooq Rana
- Schahram Dustdar
- Rajiv Ranjan 0001
year: '2024'
doi: 10.1109/MIC.2023.3319152
url: https://doi.org/10.1109/MIC.2023.3319152
dblp_key: journals/internet/WilsonALSRD024
venue_name: IEEE Internet Comput.
pages: 70-80
- title: 'Distributed Quantum Machine Learning: Federated and Model-Parallel Approaches'
authors:
- Jindi Wu
- Tianjie Hu
- Qun Li 0001
year: '2024'
doi: 10.1109/MIC.2024.3361288
url: https://doi.org/10.1109/MIC.2024.3361288
dblp_key: journals/internet/WuHL24
venue_name: IEEE Internet Comput.
pages: 65-72
- title: 'Timeliness in Autonomous Driving: Hype or Reality?'
authors:
- Tianze Wu
- Weisong Shi
year: '2024'
doi: 10.1109/MIC.2024.3441869
url: https://doi.org/10.1109/MIC.2024.3441869
dblp_key: journals/internet/WuS24
venue_name: IEEE Internet Comput.
pages: 75-84
- title: Digital-Twin-Driven End-to-End Network Slicing Toward 6G
authors:
- Mahnoor Yaqoob
- Ramona Trestian
- Mallik Tatipamula
- Huan Xuan Nguyen
year: '2024'
doi: 10.1109/MIC.2023.3332252
url: https://doi.org/10.1109/MIC.2023.3332252
dblp_key: journals/internet/YaqoobTTN24
venue_name: IEEE Internet Comput.
pages: 47-55
- title: 'The EMPWR Platform: Data and Knowledge-Driven Processes for the Knowledge
Graph Lifecycle'
authors:
- Hong Yung Yip
- Amit P. Sheth
year: '2024'
doi: 10.1109/MIC.2023.3339858
url: https://doi.org/10.1109/MIC.2023.3339858
dblp_key: journals/internet/YipS24
venue_name: IEEE Internet Comput.
pages: 61-69
- title: Special Issue on Data Economy and Data Marketplaces
authors:
- Xiaohui Yu 0001
- Jinfei Liu
year: '2024'
doi: 10.1109/MIC.2024.3415950
url: https://doi.org/10.1109/MIC.2024.3415950
dblp_key: journals/internet/YuL24
venue_name: IEEE Internet Comput.
pages: 5-6
- title: Digital Ethics in Federated Learning
authors:
- Liangqi Yuan
- Ziran Wang
- Christopher G. Brinton
year: '2024'
doi: 10.1109/MIC.2024.3370408
url: https://doi.org/10.1109/MIC.2024.3370408
dblp_key: journals/internet/YuanWB24
venue_name: IEEE Internet Comput.
pages: 66-74
- title: Protecting Data Buyer Privacy in Data Markets
authors:
- Minxing Zhang
- Jian Pei 0001
year: '2024'
doi: 10.1109/MIC.2024.3398626
url: https://doi.org/10.1109/MIC.2024.3398626
dblp_key: journals/internet/ZhangP24
venue_name: IEEE Internet Comput.
pages: 14-20

View File

@@ -0,0 +1,119 @@
venue: IC
year: 2024
selected:
- title: "Revisiting Edge AI: Opportunities and Challenges"
authors:
- Tobias Meuser
- Lauri Lovén
- Monowar Bhuyan
- Shishir G. Patil
- Schahram Dustdar
- Atakan Aral
- Suzan Bayhan
- Christian Becker 0001
- Eyal de Lara
- Aaron Yi Ding
- Janick Edinger
- James Gross
- Nitinder Mohan
- Andy D. Pimentel
- Etienne Rivière
- Henning Schulzrinne
- Pieter Simoens
- Gürkan Solmaz
- Michael Welzl
tldr: "A multi-author position paper that revisits the state of edge AI, cataloguing deployment barriers and open research problems across hardware, networking, and software layers."
why_notable: "Brings together 19 leading researchers to synthesize the field's most pressing edge AI challenges, making it an authoritative reference for practitioners and researchers planning edge deployments."
- title: "On Causality in Distributed Continuum Systems"
authors:
- Víctor Casamayor-Pujol
- Boris Sedlak
- Praveen Kumar Donta
- Schahram Dustdar
tldr: "Formalizes causal reasoning across cloud-to-edge continuum systems, providing a conceptual framework for tracking cause-and-effect relationships in highly distributed deployments."
why_notable: "Addresses a foundational gap in distributed systems theory that becomes critical when debugging or optimizing multi-tier edgecloud pipelines."
- title: "Beyond Von Neumann in the Computing Continuum: Architectures, Applications, and Future Directions"
authors:
- Dragi Kimovski
- Nishant Saurabh
- Matthijs Jansen
- Atakan Aral
- Auday Al-Dulaimy
- André B. Bondi
- Antonino Galletta
- Alessandro V. Papadopoulos
- Alexandru Iosup
- Radu Prodan
tldr: "Surveys non-von Neumann architectural paradigms—neuromorphic, in-memory, and dataflow computing—and maps them onto continuum computing use cases spanning edge to cloud."
why_notable: "Offers a rare cross-cutting view of how emerging hardware architectures reshape the design space for distributed Internet applications."
- title: "ARASEC: Adaptive Resource Allocation and Model Training for Serverless Edge-Cloud Computing"
authors:
- Dewant Katare
- Eduard Marin
- Nicolas Kourtellis
- Marijn Janssen
- Aaron Yi Ding
tldr: "Proposes ARASEC, a system that jointly optimizes resource allocation and on-device model training for serverless functions deployed across edge and cloud nodes."
why_notable: "Demonstrates measurable efficiency gains in a realistic serverless edge-cloud setting, directly informing how operators should provision heterogeneous serverless infrastructure."
- title: "WebAssembly at the Edge: Benchmarking a Serverless Platform for Private Edge Cloud Systems"
authors:
- Giuseppe De Palma
- Saverio Giallorenzo
- Jacopo Mauro
- Matteo Trentin
- Gianluigi Zavattaro
tldr: "Benchmarks a WebAssembly-based serverless runtime on private edge cloud hardware, measuring cold-start latency, throughput, and isolation overhead compared to container-based alternatives."
why_notable: "Provides concrete empirical data that practitioners need when evaluating WebAssembly as a lightweight alternative to Docker for edge serverless deployments."
- title: "HeROsim: An Allocation and Scheduling Simulator for Evaluating Serverless Orchestration Policies"
authors:
- Vincent Lannurien
- Laurent d'Orazio
- Olivier Barais
- Stéphane Paquelet
- Jalil Boukhobza
tldr: "Introduces HeROsim, an open simulator that models serverless function placement and scheduling policies across heterogeneous infrastructure, enabling fair policy comparison without live cluster costs."
why_notable: "Fills a practical tooling gap for researchers and platform engineers who need reproducible evaluation environments for serverless orchestration algorithms."
- title: "Hierarchical Network Data Analytics Framework for 6G Network Automation: Design and Implementation"
authors:
- Youbin Jeon
- Sangheon Pack
tldr: "Designs and implements a hierarchical analytics framework that aggregates network telemetry at multiple granularities to automate management decisions in 6G deployments."
why_notable: "Bridges the gap between 6G vision and practical automation by providing a concrete architecture with implementation details and empirical evaluation."
- title: "Digital-Twin-Driven End-to-End Network Slicing Toward 6G"
authors:
- Mahnoor Yaqoob
- Ramona Trestian
- Mallik Tatipamula
- Huan Xuan Nguyen
tldr: "Proposes a digital-twin framework that continuously models and reconfigures end-to-end network slices, enabling dynamic SLA enforcement across heterogeneous 6G infrastructure."
why_notable: "Connects digital twin technology to the operational problem of network slice management, a key requirement for 6G service assurance."
- title: "The Internet of Things in the Era of Generative AI: Vision and Challenges"
authors:
- Xin Wang 0120
- Zhongwei Wan
- Arvin Hekmati
- Mingyu Zong
- Samiul Alam
- Mi Zhang 0002
- Bhaskar Krishnamachari
tldr: "Examines how generative AI models can be integrated into IoT pipelines for data synthesis, anomaly detection, and on-device inference, and identifies the key resource and privacy constraints."
why_notable: "Provides a structured research agenda for one of the most active intersections in Internet computing, relevant to both IoT platform designers and ML practitioners."
- title: "Distributed Federated Deep Learning in Clustered Internet of Things Wireless Networks With Data Similarity-Based Client Participation"
authors:
- Evangelia Fragkou 0001
- Eleftheria Chini
- Maria Papadopoulou 0008
- Dimitrios K. Papakostas
- Dimitrios Katsaros 0001
- Schahram Dustdar
tldr: "Proposes a clustered federated learning scheme for wireless IoT networks that selects participating clients based on data similarity, reducing communication overhead and improving model convergence."
why_notable: "Addresses a core practical challenge in IoT federated learning—heterogeneous and non-IID data—with an empirically validated participation strategy."

View File

@@ -0,0 +1,678 @@
venue: IC
year: 2025
source: dblp
count: 52
papers:
- title: 'AICon: Agentic Intelligence for the Computing Continuum'
authors:
- Ildefons Magrans de Abril
- Nefeli-Marina Rouska
- Víctor Casamayor-Pujol
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2025.3645964
url: https://doi.org/10.1109/MIC.2025.3645964
dblp_key: journals/internet/AbrilRCD25
venue_name: IEEE Internet Comput.
pages: 53-62
- title: 'iGenEdge: Intelligent Generative AI Service Deployment for Edge-Connected
IoT Devices'
authors:
- Faiza Akram
- Asad Waqar Malik
- Samee U. Khan
year: '2025'
doi: 10.1109/MIC.2025.3576072
url: https://doi.org/10.1109/MIC.2025.3576072
dblp_key: journals/internet/AkramMK25
venue_name: IEEE Internet Comput.
pages: 16-24
- title: 'Assessing Latency in ASR Systems: A Methodological Perspective for Real-Time
Use'
authors:
- Carlos Arriaga
- Alejandro Pozo
- Javier Conde
- Alvaro Alonso
year: '2025'
doi: 10.1109/MIC.2025.3614363
url: https://doi.org/10.1109/MIC.2025.3614363
dblp_key: journals/internet/ArriagaPCA25
venue_name: IEEE Internet Comput.
pages: 17-24
- title: 'Software Updates for Large-Scale Autonomous Vehicles Deployment: Challenges
and Opportunities'
authors:
- Arpan Bhattacharjee
- Weisong Shi
year: '2025'
doi: 10.1109/MIC.2025.3643221
url: https://doi.org/10.1109/MIC.2025.3643221
dblp_key: journals/internet/BhattacharjeeS25
venue_name: IEEE Internet Comput.
pages: 65-72
- title: 'Internet of Twins Approach: Digital-Twin-as-a-Platform Architecture'
authors:
- Lal Verda Çakir
- Mehmet Özdem
- Hamed Ahmadi
- Trung Q. Duong
- Berk Canberk
year: '2025'
doi: 10.1109/MIC.2024.3491915
url: https://doi.org/10.1109/MIC.2024.3491915
dblp_key: journals/internet/CakirOADC25
venue_name: IEEE Internet Comput.
pages: 65-74
- title: Reliable Cloud Operations Using Transformers
authors:
- Jorge Cardoso 0001
year: '2025'
doi: 10.1109/MIC.2025.3575450
url: https://doi.org/10.1109/MIC.2025.3575450
dblp_key: journals/internet/Cardoso25
venue_name: IEEE Internet Comput.
pages: 5-12
- title: From IoT Networks Deployment to Robust Location-Based Services Using the
Digital Twin of a Building
authors:
- Aurélien Chambon
- Abderrezak Rachedi
- Abderrahim Sahli
- Ahmed Mebarki
year: '2025'
doi: 10.1109/MIC.2024.3502631
url: https://doi.org/10.1109/MIC.2024.3502631
dblp_key: journals/internet/ChambonRSM25
venue_name: IEEE Internet Comput.
pages: 32-38
- title: 'Empowering User Privacy in Edge Computing: Generative AI for Dynamic Policy
Compliance'
authors:
- Salma Dkier
- Souad Sadki
- Hanan El Bakkali
year: '2025'
doi: 10.1109/MIC.2025.3576184
url: https://doi.org/10.1109/MIC.2025.3576184
dblp_key: journals/internet/DkierSB25
venue_name: IEEE Internet Comput.
pages: 25-35
- title: Human-Based Distributed Intelligence in Computing Continuum Systems
authors:
- Praveen Kumar Donta
- Boris Sedlak
- Ilir Murturi
- Víctor Casamayor-Pujol
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2024.3460908
url: https://doi.org/10.1109/MIC.2024.3460908
dblp_key: journals/internet/DontaSMCD25
venue_name: IEEE Internet Comput.
pages: 61-68
- title: 'Enhancing Electric Vehicle Range Prediction: A Federated Learning Framework
Addressing Non-IID Data Challenges'
authors:
- Prajna Dora
- Harini N. 0001
year: '2025'
doi: 10.1109/MIC.2025.3622738
url: https://doi.org/10.1109/MIC.2025.3622738
dblp_key: journals/internet/DoraN25
venue_name: IEEE Internet Comput.
pages: 44-54
- title: 'Probing the Augmented Reality Scene Analysis Capabilities of Large Multimodal
Models: Toward Reliable Real-Time Assessment Solutions'
authors:
- Lin Duan
- Elias Rotondo
- Yanming Xiu
- Sangjun Eom
- Ryan Jay Chen
- Conrad Li
- Yuhe Hu
- Maria Gorlatova
year: '2025'
doi: 10.1109/MIC.2025.3622505
url: https://doi.org/10.1109/MIC.2025.3622505
dblp_key: journals/internet/DuanRXECLHG25
venue_name: IEEE Internet Comput.
pages: 25-34
- title: User Feedback-Driven Generative Models-Based Methodology for Service Construction
authors:
- Guodong Fan
- Shizhan Chen
- Lu Zhang 0071
year: '2025'
doi: 10.1109/MIC.2025.3548143
url: https://doi.org/10.1109/MIC.2025.3548143
dblp_key: journals/internet/FanCZ25
venue_name: IEEE Internet Comput.
pages: 50-59
- title: Have Multimodal Large Language Models Really Learned to Tell the Time on
Analog Clocks?
authors:
- Tairan Fu
- Miguel González 0005
- Javier Conde
- Elena Merino Gómez
- Pedro Reviriego
year: '2025'
doi: 10.1109/MIC.2025.3618144
url: https://doi.org/10.1109/MIC.2025.3618144
dblp_key: journals/internet/FuGCGR25
venue_name: IEEE Internet Comput.
pages: 48-54
- title: 'Epistemic Partner or Cognitive Crutch: A Conceptual Model of Cognitive Offloading
in Human-Artificial Intelligence Collaboration'
authors:
- David Andrés García-Barrios
year: '2025'
doi: 10.1109/MIC.2025.3626694
url: https://doi.org/10.1109/MIC.2025.3626694
dblp_key: journals/internet/GarciaBarrios25
venue_name: IEEE Internet Comput.
pages: 7-16
- title: 'Building Multimodal Knowledge Graphs: Automation for Enterprise Integration'
authors:
- Ritvik Garimella
- Hong Yung Yip
- Revathy Venkataramanan
- Amit P. Sheth
year: '2025'
doi: 10.1109/MIC.2025.3588546
url: https://doi.org/10.1109/MIC.2025.3588546
dblp_key: journals/internet/GarimellaYVS25
venue_name: IEEE Internet Comput.
pages: 76-84
- title: Toward Carbon-Aware Data Transfers
authors:
- Jacob Goldverg
- Hasibul Jamil
- Elvis Rodrigues
- Tevfik Kosar
year: '2025'
doi: 10.1109/MIC.2025.3565187
url: https://doi.org/10.1109/MIC.2025.3565187
dblp_key: journals/internet/GoldvergJRK25
venue_name: IEEE Internet Comput.
pages: 19-26
- title: 'Think Locally, Act Globally: A Programming Model for Decentralized Applications'
authors:
- Julian Haas
- Christian Kuessner
- Ragnar Mogk
- Mira Mezini
year: '2025'
doi: 10.1109/MIC.2025.3618947
url: https://doi.org/10.1109/MIC.2025.3618947
dblp_key: journals/internet/HaasKMM25
venue_name: IEEE Internet Comput.
pages: 55-64
- title: Special Issue on Immersive Computing
authors:
- Bo Han 0001
year: '2025'
doi: 10.1109/MIC.2026.3651156
url: https://doi.org/10.1109/MIC.2026.3651156
dblp_key: journals/internet/Han25
venue_name: IEEE Internet Comput.
pages: 5-6
- title: 'UniTwin: Pushing Universal Digital Twins Into the Clouds Through Reconfigurable
Container Environments'
authors:
- Tim Häußermann
- Joel Lehmann
- Alessa Rache
- Florian Kolb
- Felix Wühler
- Julian Reichwald
year: '2025'
doi: 10.1109/MIC.2024.3489876
url: https://doi.org/10.1109/MIC.2024.3489876
dblp_key: journals/internet/HaussermannLRKWR25
venue_name: IEEE Internet Comput.
pages: 8-15
- title: Special Issue on Computing for Sustainability
authors:
- David Irwin 0001
- Prashant J. Shenoy
year: '2025'
doi: 10.1109/MIC.2025.3568562
url: https://doi.org/10.1109/MIC.2025.3568562
dblp_key: journals/internet/IrwinS25
venue_name: IEEE Internet Comput.
pages: 6-7
- title: A Vision for Computational Decarbonization of Societal Infrastructure
authors:
- David Irwin 0001
- Prashant J. Shenoy
- Mohammad Hajiesmaili
- Walid A. Hanafy
- Jimi Oke
- Ramesh K. Sitaraman
- Yuvraj Agarwal
- Geoffrey J. Gordon
- Zico Kolter
- Deepak Rajagopal
- Mani Srivastava 0001
- Vivienne Sze
- Priya L. Donti
- Andrew A. Chien
- John R. Birge
- Ali Hortaçsu
- Line Roald
year: '2025'
doi: 10.1109/MIC.2025.3575016
url: https://doi.org/10.1109/MIC.2025.3575016
dblp_key: journals/internet/IrwinSHHOSAGKRSSDCBHR25
venue_name: IEEE Internet Comput.
pages: 27-35
- title: Understanding User Trust and Expectations in Answerable Sociotechnical Systems
authors:
- Dilara Keküllüoglu
- Yuqi Niu
- Michael Rovatsos
- Nadin Kökciyan
year: '2025'
doi: 10.1109/MIC.2025.3633484
url: https://doi.org/10.1109/MIC.2025.3633484
dblp_key: journals/internet/KekulluogluNRK25
venue_name: IEEE Internet Comput.
pages: 35-43
- title: Special Issue on Human Meets AI
authors:
- Nadin Kökciyan
- Pradeep K. Murukannaiah
- Pinar Yolum
year: '2025'
doi: 10.1109/MIC.2025.3623390
url: https://doi.org/10.1109/MIC.2025.3623390
dblp_key: journals/internet/KokciyanMY25
venue_name: IEEE Internet Comput.
pages: 5-6
- title: 'Cognitive Digital Twins for the Microgrid: A Real-World Study for Intelligent
Energy Management and Optimization'
authors:
- Sivaneasan Bala Krishnan
- Kuan Tak Tan
- Wei Zhang 0082
year: '2025'
doi: 10.1109/MIC.2024.3488896
url: https://doi.org/10.1109/MIC.2024.3488896
dblp_key: journals/internet/KrishnanTZ25
venue_name: IEEE Internet Comput.
pages: 39-47
- title: 'Human Digital Twins: Enhancing Interactions With Digital Ecosystems'
authors:
- Sergio Laso
- Juan Luis Herrera 0001
- Jaime Galán-Jiménez
- Javier Berrocal
year: '2025'
doi: 10.1109/MIC.2024.3509672
url: https://doi.org/10.1109/MIC.2024.3509672
dblp_key: journals/internet/LasoHGB25
venue_name: IEEE Internet Comput.
pages: 56-64
- title: 'The Urban Space Information Platform: Opportunities and Challenges'
authors:
- Jiabao Li
- Rajiv Ranjan 0001
- Yuewei Wang
- Xiaohui Huang 0002
- Philip James 0002
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2025.3527821
url: https://doi.org/10.1109/MIC.2025.3527821
dblp_key: journals/internet/LiRWHJD25
venue_name: IEEE Internet Comput.
pages: 66-75
- title: Governing Framework for the Responsible Democratization of Large-Language
Models in Banking
authors:
- Abhishek Mandal
- Rajitha Ramanayake
- Owen O'Neill
- William Flanagan
- Nabeel Kemal
- Mehdi Yekrangi
- Houssem Chatbri
- Christopher Martin 0012
year: '2025'
doi: 10.1109/MIC.2025.3621976
url: https://doi.org/10.1109/MIC.2025.3621976
dblp_key: journals/internet/MandalROFKYCM25
venue_name: IEEE Internet Comput.
pages: 25-34
- title: 'Characterization of Probabilistic Structure of Internet Traffic During COVID-19:
A Study Based on MAWI Data'
authors:
- Anoushka Mittal
- Pranav Jain
- Karmeshu
- Shachi Sharma
year: '2025'
doi: 10.1109/MIC.2025.3576230
url: https://doi.org/10.1109/MIC.2025.3576230
dblp_key: journals/internet/MittalJKS25
venue_name: IEEE Internet Comput.
pages: 13-21
- title: Securing Voice Authentication Applications Against Targeted Data Poisoning
authors:
- Alireza Mohammadi
- Keshav Sood
- Asef Nazari
- Dhananjay R. Thiruvady
year: '2025'
doi: 10.1109/MIC.2025.3588068
url: https://doi.org/10.1109/MIC.2025.3588068
dblp_key: journals/internet/MohammadiSNT25
venue_name: IEEE Internet Comput.
pages: 41-47
- title: 'Smaller, Smarter, Closer: The Edge of Collaborative Generative Artificial
Intelligence'
authors:
- Roberto Morabito
- SiYoung Jang
year: '2025'
doi: 10.1109/MIC.2025.3575493
url: https://doi.org/10.1109/MIC.2025.3575493
dblp_key: journals/internet/MorabitoJ25
venue_name: IEEE Internet Comput.
pages: 7-15
- title: Memory-Augmented Autoencoder with Reservoir Computing for Edge-Based Anomaly
Detection in Autonomous Systems
authors:
- Fabiha Nowshin
- Zheng Dong 0002
- Yang Yi 0002
year: '2025'
doi: 10.1109/MIC.2025.3594330
url: https://doi.org/10.1109/MIC.2025.3594330
dblp_key: journals/internet/NowshinDY25
venue_name: IEEE Internet Comput.
pages: 44-52
- title: 'MEAL: Model of Empathy Augmented Logistics for Food Security'
authors:
- Seoyeong Park
- Munindar P. Singh
year: '2025'
doi: 10.1109/MIC.2025.3590008
url: https://doi.org/10.1109/MIC.2025.3590008
dblp_key: journals/internet/ParkS25
venue_name: IEEE Internet Comput.
pages: 56-64
- title: 'Rethinking Computing Systems in the Era of Climate Crisis: A Call for a
Sustainable Computing Continuum'
authors:
- Ella Peltonen
- Suzan Bayhan
- David Bermbach
- Sebastian Buschjäger
- Victoria Degeler
- Aaron Yi Ding
- Özlem Durmaz Incel
- Dewant Katare
- Mikkel Baun Kjærgaard
- Sam Leroux
- Toktam Mahmoodi
- Zoltán Ádám Mann
- Nirvana Meratnia
- Andy D. Pimentel
- Jan S. Rellermeyer
- Etienne Rivière
- Dolly Sapra
- Gürkan Solmaz
- Bram van der Waaij
year: '2025'
doi: 10.1109/MIC.2025.3566642
url: https://doi.org/10.1109/MIC.2025.3566642
dblp_key: journals/internet/PeltonenBBBDDIKKLMMMPRR25
venue_name: IEEE Internet Comput.
pages: 8-18
- title: Benchmarking Extended Reality Systems
authors:
- Voicu Popescu
- George Kesidis
- Gustavo de Veciana
- Sonia Fahmy
year: '2025'
doi: 10.1109/MIC.2025.3626597
url: https://doi.org/10.1109/MIC.2025.3626597
dblp_key: journals/internet/PopescuKVF25
venue_name: IEEE Internet Comput.
pages: 7-14
- title: 'Digital Twins and Artificial Collective Intelligence: Synergies for the
Future'
authors:
- Elena Pretel
- Elena Navarro 0001
- Víctor Casamayor-Pujol
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2024.3521607
url: https://doi.org/10.1109/MIC.2024.3521607
dblp_key: journals/internet/PretelNCD25
venue_name: IEEE Internet Comput.
pages: 75-85
- title: Digital Twin-Enabled Unmanned Aerial Vehicles Network for Disaster Management
authors:
- Muhammad Adnan Qadir
- Sana Sharif
- Sherali Zeadally
- Waleed Ejaz
year: '2025'
doi: 10.1109/MIC.2025.3588134
url: https://doi.org/10.1109/MIC.2025.3588134
dblp_key: journals/internet/QadirSZE25
venue_name: IEEE Internet Comput.
pages: 48-55
- title: Equilibrium-Driven Antifragility in Computing Continuum Systems
authors:
- Nefeli-Marina Rouska
- Víctor Casamayor-Pujol
- Ildefons Magrans de Abril
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2025.3597479
url: https://doi.org/10.1109/MIC.2025.3597479
dblp_key: journals/internet/RouskaCAD25
venue_name: IEEE Internet Comput.
pages: 55-64
- title: Edge AI for Earth Observation
authors:
- Ning Ruan
- Kun Li
- Qiyang Zhang 0001
- Lauri Lovén
- Praveen Kumar Donta
- Yi Jia
- Schahram Dustdar
year: '2025'
doi: 10.1109/MIC.2025.3587325
url: https://doi.org/10.1109/MIC.2025.3587325
dblp_key: journals/internet/RuanLZLDJD25
venue_name: IEEE Internet Comput.
pages: 31-40
- title: 'From Code to Intent: Re-Architecting Internet Computing for the AI Era'
authors:
- Douglas C. Schmidt
year: '2025'
doi: 10.1109/MIC.2026.3651157
url: https://doi.org/10.1109/MIC.2026.3651157
dblp_key: journals/internet/Schmidt25
venue_name: IEEE Internet Comput.
pages: 63-69
- title: 'Composite AI With Custom, Compact, Neurosymbolic Models: The Emergent Enterprise
Artificial Intelligence Paradigm'
authors:
- Amit P. Sheth
- Kaushik Roy 0009
- Revathy Venkataramanan
- Venkatesan Nadimuthu
- Chathurangi Shyalika
year: '2025'
doi: 10.1109/MIC.2025.3570554
url: https://doi.org/10.1109/MIC.2025.3570554
dblp_key: journals/internet/ShethRVNS25
venue_name: IEEE Internet Comput.
pages: 37-49
- title: 'Ship-to-Shore Network Monitoring: The Research Vessel Sikuliaq Experience'
authors:
- Komal Thareja
- Anirban Mandal
- Julian Race
- Paul Ruth
- Christopher Romsos
- Ewa Deelman
year: '2025'
doi: 10.1109/MIC.2025.3615849
url: https://doi.org/10.1109/MIC.2025.3615849
dblp_key: journals/internet/TharejaMRRRD25
venue_name: IEEE Internet Comput.
pages: 77-84
- title: 'Dynamic Multimodal Process Knowledge Graphs: A Neurosymbolic Framework for
Compositional Reasoning'
authors:
- Revathy Venkataramanan
- Chathurangi Shyalika
- Amit P. Sheth
year: '2025'
doi: 10.1109/MIC.2024.3520366
url: https://doi.org/10.1109/MIC.2024.3520366
dblp_key: journals/internet/VenkataramananSS25
venue_name: IEEE Internet Comput.
pages: 86-92
- title: Special Issue on Digital Twins
authors:
- Ziran Wang
- Michael W. Grieves
- Yonggang Wen 0001
- Fan Xue
year: '2025'
doi: 10.1109/MIC.2025.3540532
url: https://doi.org/10.1109/MIC.2025.3540532
dblp_key: journals/internet/WangGWX25
venue_name: IEEE Internet Comput.
pages: 5-7
- title: Multifidelity Data Fusion Mechanism for Digital Twins via the Internet of
Things
authors:
- Hao Wang 0225
- Xueguan Song
- Chao Zhang 0017
year: '2025'
doi: 10.1109/MIC.2024.3483831
url: https://doi.org/10.1109/MIC.2024.3483831
dblp_key: journals/internet/WangSZ25
venue_name: IEEE Internet Comput.
pages: 16-23
- title: 'Zero Trust-Driven Collaborative Intrusion Detection in Internet of Things:
A Continuous Trust Assessment Approach'
authors:
- Xinxin Wang
- Qingjun Yuan
- Yongjuan Wang
- Jihong Teng
- Jing Tao
- Meng Shen 0001
year: '2025'
doi: 10.1109/MIC.2025.3610857
url: https://doi.org/10.1109/MIC.2025.3610857
dblp_key: journals/internet/WangYWTTS25
venue_name: IEEE Internet Comput.
pages: 37-47
- title: A Generative Modeling Method for Digital Twin Shop Floor
authors:
- Yanting Wu
- Yicheng Sun
- Xiaojian Wen
- Xiaoqiang Liu
- Jinsong Bao
- Sen Wang
year: '2025'
doi: 10.1109/MIC.2024.3522301
url: https://doi.org/10.1109/MIC.2024.3522301
dblp_key: journals/internet/WuSWLBW25
venue_name: IEEE Internet Comput.
pages: 24-31
- title: Conformal Prediction-Based Multifidelity Data Fusion for Digital Twins
authors:
- Baofei Xia
- Hao Wang 0225
- Xueguan Song
- Chao Zhang 0017
year: '2025'
doi: 10.1109/MIC.2025.3646629
url: https://doi.org/10.1109/MIC.2025.3646629
dblp_key: journals/internet/XiaWSZ25
venue_name: IEEE Internet Comput.
pages: 35-43
- title: Advancing Conservation Methods of the Great Wall Cultural Heritage Through
Digital Twin
authors:
- Zhi Zhang
- Anrong Dang
- Jingxiong Huang
- Yang Chen 0005
year: '2025'
doi: 10.1109/MIC.2025.3539367
url: https://doi.org/10.1109/MIC.2025.3539367
dblp_key: journals/internet/ZhangDHC25
venue_name: IEEE Internet Comput.
pages: 48-55
- title: Special Issue on Generative AI for Edge Computing
authors:
- Mi Zhang 0002
- Xia Hu 0001
year: '2025'
doi: 10.1109/MIC.2025.3630305
url: https://doi.org/10.1109/MIC.2025.3630305
dblp_key: journals/internet/ZhangH25
venue_name: IEEE Internet Comput.
pages: 5-6
- title: 'When Generative Artificial Intelligence Meets Extended Reality: Enabling
Scalable and Natural Interactions'
authors:
- Mingyu Zhu
- Jiangong Chen
- Bin Li 0014
year: '2025'
doi: 10.1109/MIC.2025.3619462
url: https://doi.org/10.1109/MIC.2025.3619462
dblp_key: journals/internet/ZhuCL25
venue_name: IEEE Internet Comput.
pages: 15-24
- title: On the Impacts of Spherical Harmonics and Gaussian Counts in WebGL-Based
3-D Gaussian Splatting
authors:
- Mufeng Zhu
- Yao Liu 0001
year: '2025'
doi: 10.1109/MIC.2025.3577578
url: https://doi.org/10.1109/MIC.2025.3577578
dblp_key: journals/internet/ZhuL25
venue_name: IEEE Internet Comput.
pages: 23-30
- title: 'A Survey of Large Language Models in Urban Natural Disaster Emergency Management:
Progress, Application, and Challenges'
authors:
- Guishui Zhu
- Feifei Zhang
- Rajiv Ranjan 0001
- Schahram Dustdar
- Jiabao Li
- Yiyue Wang
- Yuewei Wang
- Xiaohui Huang 0002
- Yunliang Chen 0002
- Lizhe Wang 0001
year: '2025'
doi: 10.1109/MIC.2025.3566787
url: https://doi.org/10.1109/MIC.2025.3566787
dblp_key: journals/internet/ZhuZRDLWWHCW25
venue_name: IEEE Internet Comput.
pages: 66-76

View File

@@ -0,0 +1,107 @@
venue: IC
year: 2025
selected:
- title: "Rethinking Computing Systems in the Era of Climate Crisis: A Call for a Sustainable Computing Continuum"
authors:
- Ella Peltonen
- Suzan Bayhan
- David Bermbach
- Sebastian Buschjäger
- Victoria Degeler
- Aaron Yi Ding
- Özlem Durmaz Incel
- Dewant Katare
- Mikkel Baun Kjærgaard
- Sam Leroux
- Toktam Mahmoodi
- Zoltán Ádám Mann
- Nirvana Meratnia
- Andy D. Pimentel
- Jan S. Rellermeyer
- Etienne Rivière
- Dolly Sapra
- Gürkan Solmaz
- Bram van der Waaij
tldr: "A multi-author position paper calling for carbon-aware design principles across the cloud-to-edge computing continuum, surveying energy measurement, workload scheduling, and hardware lifecycle challenges."
why_notable: "Establishes a community research agenda for sustainable computing infrastructure at a time when datacenter and edge energy consumption is under increasing regulatory and societal scrutiny."
- title: "Toward Carbon-Aware Data Transfers"
authors:
- Jacob Goldverg
- Hasibul Jamil
- Elvis Rodrigues
- Tevfik Kosar
tldr: "Proposes scheduling and routing strategies for large-scale data transfers that minimize carbon emissions by leveraging time- and location-varying grid carbon intensity signals."
why_notable: "Delivers a practical, implementable mechanism for reducing the carbon footprint of Internet data movement, directly applicable to data-intensive scientific and cloud workflows."
- title: "Zero Trust-Driven Collaborative Intrusion Detection in Internet of Things: A Continuous Trust Assessment Approach"
authors:
- Xinxin Wang
- Qingjun Yuan
- Yongjuan Wang
- Jihong Teng
- Jing Tao
- Meng Shen 0001
tldr: "Designs a collaborative intrusion detection system for IoT networks grounded in zero-trust principles, continuously reassessing device trust scores to isolate compromised nodes in real time."
why_notable: "Demonstrates how zero-trust architectures can be operationalized at IoT scale, providing a concrete detection model with empirical evaluation on real traffic."
- title: "Securing Voice Authentication Applications Against Targeted Data Poisoning"
authors:
- Alireza Mohammadi
- Keshav Sood
- Asef Nazari
- Dhananjay R. Thiruvady
tldr: "Identifies and mitigates targeted data poisoning attacks on voice authentication systems by detecting and filtering malicious training samples before model updates are applied."
why_notable: "Highlights a practical and underexplored attack surface in biometric authentication services, with defenses validated against realistic adversarial scenarios."
- title: "Characterization of Probabilistic Structure of Internet Traffic During COVID-19: A Study Based on MAWI Data"
authors:
- Anoushka Mittal
- Pranav Jain
- Karmeshu
- Shachi Sharma
tldr: "Applies statistical modeling to MAWI backbone traffic traces collected during COVID-19 to characterize shifts in Internet traffic distributions and identify new usage patterns."
why_notable: "Provides rare longitudinal empirical evidence of how a major societal disruption altered Internet traffic structure, with implications for capacity planning and anomaly detection baselines."
- title: "iGenEdge: Intelligent Generative AI Service Deployment for Edge-Connected IoT Devices"
authors:
- Faiza Akram
- Asad Waqar Malik
- Samee U. Khan
tldr: "Proposes iGenEdge, a framework that intelligently partitions and deploys generative AI inference tasks across edge servers and IoT devices based on latency, energy, and model accuracy constraints."
why_notable: "Addresses the critical engineering challenge of running large generative models close to IoT data sources, with practical placement algorithms and experimental validation."
- title: "Smaller, Smarter, Closer: The Edge of Collaborative Generative Artificial Intelligence"
authors:
- Roberto Morabito
- SiYoung Jang
tldr: "Surveys strategies for deploying collaborative generative AI models at the network edge, covering model compression, offloading, and inter-device coordination techniques."
why_notable: "Gives a clear-eyed assessment of where edge generative AI stands today and what infrastructure advances are needed, serving as a practical guide for edge platform designers."
- title: "Memory-Augmented Autoencoder with Reservoir Computing for Edge-Based Anomaly Detection in Autonomous Systems"
authors:
- Fabiha Nowshin
- Zheng Dong 0002
- Yang Yi 0002
tldr: "Combines a memory-augmented autoencoder with reservoir computing to detect anomalies in autonomous system sensor streams directly on resource-constrained edge hardware."
why_notable: "Demonstrates strong anomaly detection accuracy under tight edge compute budgets, making it directly relevant to safety-critical IoT and autonomous vehicle deployments."
- title: "Ship-to-Shore Network Monitoring: The Research Vessel Sikuliaq Experience"
authors:
- Komal Thareja
- Anirban Mandal
- Julian Race
- Paul Ruth
- Christopher Romsos
- Ewa Deelman
tldr: "Presents a real-world case study of continuous network monitoring for a research vessel operating over satellite links, characterizing link quality, disruptions, and measurement methodology."
why_notable: "Offers rare empirical data on challenged maritime Internet connectivity, informing the design of resilient monitoring and science workflows for remote and mobile environments."
- title: "Think Locally, Act Globally: A Programming Model for Decentralized Applications"
authors:
- Julian Haas
- Christian Kuessner
- Ragnar Mogk
- Mira Mezini
tldr: "Introduces a programming model that lets developers write local per-node logic while the runtime automatically enforces global consistency and coordination across a decentralized application."
why_notable: "Tackles the fundamental complexity of building correct decentralized Internet applications, offering a principled abstraction that could reduce the gap between distributed systems theory and practice."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,141 @@
venue: IPDPS
year: 2024
papers:
- title: 'Low-Depth Spatial Tree Algorithms'
authors:
- Yves Baumann
- Tal Ben-Nun
- Maciej Besta
- Lukas Gianinazzi
- Torsten Hoefler
- Piotr Luczynski
reason: "Introduces parallel spatial-tree algorithms with provably low depth, advancing the theory of work-efficient parallel data structures for geometric workloads."
- title: 'Alternative Basis Matrix Multiplication is Fast and Stable'
authors:
- Oded Schwartz
- Sivan Toledo
- Noa Vaknin
- Gal Wiernik
reason: "Demonstrates that alternative-basis matrix multiplication achieves both practical speed and numerical stability, challenging the conventional trade-off between the two."
- title: 'Wait-free Trees with Asymptotically-Efficient Range Queries'
authors:
- Ilya Kokorin
- Victor Yudov
- Vitaly Aksenov
- Dan Alistarh
reason: "Presents the first wait-free balanced search tree supporting asymptotically optimal range queries, a long-standing open problem in concurrent data structures."
- title: 'Parallel Derandomization for Coloring'
authors:
- Sam Coy
- Artur Czumaj
- Peter Davies-Peck
- Gopinath Mishra
reason: "Develops deterministic parallel graph-coloring algorithms via derandomization, closing a key gap between randomized and deterministic complexity in this foundational problem."
- title: 'HINT: Designing Cache-Efficient MPI_Alltoall using Hybrid Memory Copy Ordering and Non-Temporal Instructions'
authors:
- Bharath Ramesh 0005
- Nick Contini
- Nawras Alnaasan
- Kaushik Kandadi Suresh
- Mustafa Abduljabbar
- Aamir Shafi
- Hari Subramoni
- Dhabaleswar K. D. K. Panda
reason: "Achieves substantial MPI_Alltoall bandwidth improvements by combining cache-aware copy ordering with non-temporal store instructions, directly benefiting large-scale collective communication."
- title: 'An Optimized Error-controlled MPI Collective Framework Integrated with Lossy Compression'
authors:
- Jiajun Huang 0001
- Sheng Di
- Xiaodong Yu 0001
- Yujia Zhai
- Zhaorui Zhang
- Jinyang Liu 0003
- Xiaoyi Lu 0001
- Ken Raffenetti
- Hui Zhou 0012
- Kai Zhao 0008
- Zizhong Chen
- Franck Cappello
- Yanfei Guo
- Rajeev Thakur
reason: "Integrates error-bounded lossy compression directly into MPI collectives, reducing communication volume with provable accuracy guarantees for HPC scientific applications."
- title: 'Software Resource Disaggregation for HPC with Serverless Computing'
authors:
- Marcin Copik
- Marcin Chrapek
- Larissa Schmid
- Alexandru Calotoiu
- Torsten Hoefler
reason: "Shows that serverless computing can serve as a practical resource-disaggregation layer for HPC, enabling fine-grained elasticity without sacrificing performance."
- title: 'Tackling Cold Start in Serverless Computing with Multi-Level Container Reuse'
authors:
- Amelie Chi Zhou
- Rongzheng Huang
- Zhoubin Ke
- Yusen Li
- Yi Wang 0003
- Rui Mao 0001
reason: "Proposes a multi-level container-reuse strategy that significantly reduces cold-start latency in serverless platforms, addressing one of the main performance bottlenecks."
- title: 'LightDAG: A Low-latency DAG-based BFT Consensus through Lightweight Broadcast'
authors:
- Xiaohai Dai
- Guanxiong Wang
- Jiang Xiao 0001
- Zhengxuan Guo
- Rui Hao
- Xia Xie 0003
- Hai Jin 0001
reason: "Redesigns DAG-based Byzantine fault-tolerant consensus to use lightweight broadcast, cutting latency while preserving safety and liveness in distributed systems."
- title: 'Benchmarking and Dissecting the Nvidia Hopper GPU Architecture'
authors:
- Weile Luo
- Ruibo Fan
- Zeyu Li
- Dayou Du
- Qiang Wang 0022
- Xiaowen Chu 0001
reason: "Provides the first systematic microbenchmark characterization of Hopper's new hardware features (TMA, warpgroup MMA, NVLink-4), yielding actionable insights for kernel developers."
- title: 'DEFCON: Deformable Convolutions Leveraging Interval Search and GPU Texture Hardware'
authors:
- Malith Jayaweera
- Yanyu Li
- Yanzhi Wang 0001
- Bin Ren 0002
- David R. Kaeli
reason: "Exploits GPU texture-cache hardware to accelerate deformable convolutions, delivering significant speedups over cuDNN-based baselines for irregular memory-access patterns."
- title: 'nOS-V: Co-Executing HPC Applications Using System-Wide Task Scheduling'
authors:
- David Álvarez 0006
- Kevin Sala
- Vicenç Beltran 0001
reason: "Introduces a system-wide task scheduler that safely co-executes multiple HPC applications on shared hardware, improving cluster utilization without modifying application code."
- title: 'Hadar: Heterogeneity-Aware Optimization-Based Online Scheduling for Deep Learning Cluster'
authors:
- Abeda Sultana
- Fei Xu
- Xu Yuan 0001
- Li Chen 0019
- Nian-Feng Tzeng
reason: "Formulates deep-learning cluster scheduling as an online optimization problem that explicitly accounts for GPU heterogeneity, reducing job completion times and improving fairness."
- title: 'A Parallel Partial Merge Repair Algorithm for Multi-block Failures for Erasure Storage Systems'
authors:
- Shuaipeng Zhang
- Shiyi Li
- Chentao Wu
- Ruobin Wu
- Saiqin Long
- Wen Xia
reason: "Presents a parallel repair algorithm for simultaneous multi-block erasure failures that outperforms sequential recovery while reducing I/O and computational overhead."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,65 @@
venue: IPDPS
year: 2025
date: "2025-05-19"
tags: [parallel-computing, hpc, distributed-systems, gpu]
selected:
- dblp_key: "conf/ipps/CincaRSV0025"
title: "Enhancing OmpSs-2 Suspendable Tasks by Combining Operating System and User-Level Threads with C++ Coroutines"
tldr: "Extends the OmpSs-2 task-based runtime with C++ coroutines to implement suspendable tasks that can yield while blocked on I/O or communication without stalling the OS thread."
why_notable: "Suspendable tasks are a key missing primitive for overlapping computation and communication in task-graph runtimes; the hybrid OS/user-level thread design avoids the overhead of full context switches while remaining portable, with broad implications for OpenMP-style programming on modern heterogeneous nodes."
- dblp_key: "conf/ipps/ColemanK25"
title: "PISA: An Adversarial Approach to Comparing Task Graph Scheduling Algorithms"
tldr: "Introduces an adversarial instance-generation framework that automatically synthesizes task graphs that expose worst-case performance gaps between competing scheduling heuristics."
why_notable: "Benchmark-driven comparison of DAG schedulers is notoriously biased toward whoever designed the benchmark; PISA's adversarial synthesis provides a principled, algorithm-agnostic methodology that could become a standard evaluation tool for the task-scheduling community."
- dblp_key: "conf/ipps/FradetGH25"
title: "Parallel Scheduling of Task Graphs with Minimal Memory Requirements"
tldr: "Proves tight bounds and provides scheduling algorithms for task graphs that minimize peak memory usage while preserving parallelism, targeting memory-constrained accelerators."
why_notable: "Peak memory is increasingly the binding constraint on accelerators with fixed HBM capacity; deriving schedules that are jointly memory-optimal and parallel addresses a theoretically hard trade-off that directly impacts large-scale neural network and sparse-solver pipelines."
- dblp_key: "conf/ipps/BinderSSL25"
title: "FATHOM: Fast Attention Through Optimizing Memory"
tldr: "Redesigns the attention kernel memory access pattern to maximize reuse across the Q, K, and V tiles, achieving significant throughput gains over FlashAttention on modern GPUs."
why_notable: "Attention is the dominant compute bottleneck in transformer inference and training; FATHOM's memory-centric reformulation improves on the widely deployed FlashAttention baseline and demonstrates that analytical cache-tile reasoning still yields practical gains at scale."
- dblp_key: "conf/ipps/FallinADCB25"
title: "Fast and Effective Lossy Compression on GPUs and CPUs with Guaranteed Error Bounds"
tldr: "Presents a portable error-bounded lossy compressor that runs natively on both GPU and CPU, delivering competitive compression ratios with strict point-wise error guarantees and low latency."
why_notable: "Scientific simulations increasingly need in-situ compression on the same GPU that runs the simulation; providing tight error bounds alongside GPU portability bridges a critical gap between scientific fidelity requirements and storage bandwidth constraints at exascale."
- dblp_key: "conf/ipps/CarpentieriCBFC25"
title: "Phase-Based Frequency Scaling for Energy-Efficient Heterogeneous Computing"
tldr: "Dynamically scales CPU and GPU frequencies based on detected application phases to reduce energy consumption while preserving performance on heterogeneous nodes."
why_notable: "Energy efficiency is a first-class constraint at exascale; phase-aware DVFS that jointly controls both CPU and GPU frequencies avoids the over-provisioning inherent in static policies, with measured gains directly applicable to production HPC clusters."
- dblp_key: "conf/ipps/HidayetogluGSSH25"
title: "HiCCL: A Hierarchical Collective Communication Library"
tldr: "Implements a multi-level collective communication library that decomposes all-reduce and other collectives into hierarchical sub-collectives matched to node-local, intra-rack, and inter-rack bandwidth tiers."
why_notable: "Flat NCCL/MPI collectives ignore the hierarchical bandwidth structure of modern GPU clusters; HiCCL's topology-aware decomposition achieves substantial throughput improvements on large distributed training jobs and is designed to be backend-agnostic."
- dblp_key: "conf/ipps/ChenYXS025"
title: "Unified Designs of Multi-Rail-Aware MPI Allreduce and Alltoall Operations Across Diverse GPU and Interconnect Systems"
tldr: "Develops unified multi-rail-aware algorithms for MPI Allreduce and Alltoall that exploit all available NIC ports simultaneously across heterogeneous interconnect systems."
why_notable: "Multi-rail configurations are increasingly common in HPC clusters yet most MPI libraries treat them as a single logical link; this work systematically closes the performance gap and the unified design enables deployment without per-system hand-tuning."
- dblp_key: "conf/ipps/PlanetaBRH25"
title: "CoRD: Converged RDMA Dataplane"
tldr: "Proposes a converged RDMA dataplane that unifies one-sided and two-sided communication semantics over a single kernel-bypass path, reducing software overhead and improving scalability."
why_notable: "RDMA stacks remain split between one-sided verbs and two-sided message passing, forcing application writers to choose and preventing optimal use of NIC offload capabilities; CoRD's converged abstraction enables a new class of communication patterns at near-wire speed."
- dblp_key: "conf/ipps/XiaoZMWZJLZZ25"
title: "FlexRLHF: A Flexible Placement and Parallelism Framework for Efficient RLHF Training"
tldr: "Introduces a placement and parallelism co-optimization framework for Reinforcement Learning from Human Feedback (RLHF) training that jointly schedules the actor, critic, and reward models to maximize GPU utilization."
why_notable: "RLHF is the dominant fine-tuning paradigm for large language models but its multi-model, heterogeneous-workload structure makes naive data/model parallelism highly inefficient; FlexRLHF's co-placement approach delivers meaningful throughput gains and establishes a design template for future RLHF infrastructure."
- dblp_key: "conf/ipps/MuneraQR25"
title: "GuardianOMP: A Framework for Highly Productive Fault Tolerance Via OpenMP Task-Level Replication"
tldr: "Adds transparent task-level redundant execution to OpenMP applications, enabling automatic detection and recovery from silent data corruption without application source changes."
why_notable: "Silent data corruption is an escalating concern as DRAM and compute elements scale into billions of transistors; GuardianOMP's integration at the OpenMP runtime level makes resilience accessible to the broad HPC community that already uses OpenMP without requiring manual checkpoint/restart logic."
- dblp_key: "conf/ipps/SalwasserSG025"
title: "Tera-Scale Multilevel Graph Partitioning"
tldr: "Scales multilevel graph partitioning to trillion-edge graphs through a distributed coarsening and refinement pipeline that maintains partition quality competitive with state-of-the-art tools on billion-edge benchmarks."
why_notable: "Graph partitioning is a prerequisite for almost every distributed graph workload; reaching the tera-scale regime with near-optimal quality is a significant algorithmic and engineering milestone that directly enables graph-parallel simulation at the largest current HPC scales."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,109 @@
venue: JPDC
year: 2024
selected:
- title: "Read/write fence-free work-stealing with multiplicity"
authors:
- Armando Castañeda
- Miguel Piña
tldr: "Presents a work-stealing deque algorithm that eliminates read/write memory fences while tolerating multiplicity, achieving provably correct concurrent access without costly barriers."
why_notable: "Advances the theoretical foundations of lock-free scheduler data structures by decoupling correctness from fence instructions, directly impacting runtime system design."
- title: "Reliable communication in dynamic networks with locally bounded byzantine faults"
authors:
- Silvia Bonomi
- Giovanni Farina
- Sébastien Tixeuil
tldr: "Characterizes the conditions under which reliable broadcast is achievable in dynamic networks where Byzantine faults are locally bounded rather than globally counted."
why_notable: "Provides tight impossibility and achievability results for a practically motivated fault model, extending classical Byzantine agreement theory to time-varying topologies."
- title: "Local certification of graph decompositions and applications to minor-free classes"
authors:
- Nicolas Bousquet 0001
- Laurent Feuilloley
- Théo Pierron
tldr: "Develops local distributed certification schemes for graph decompositions, proving tight certificate-size bounds for minor-free graph families."
why_notable: "Connects structural graph theory to distributed verification, giving new tools for designing space-efficient proof-labeling schemes in anonymous networks."
- title: "Eventually lattice-linear algorithms"
authors:
- Arya Tanmay Gupta
- Sandeep S. Kulkarni
tldr: "Introduces the eventually lattice-linear class of distributed algorithms that converge to a lattice-linear fixed point, enabling new self-stabilization constructions."
why_notable: "Unifies several stabilizing algorithm families under a clean algebraic framework that simplifies correctness proofs and inspires new design patterns."
- title: "Construction algorithms of fault-tolerant paths and disjoint paths in k-ary n-cube networks"
authors:
- Mengjie Lv
- Jianxi Fan
- Baolei Cheng
- Jia Yu 0003
- Xiaohua Jia
tldr: "Proposes efficient algorithms to construct maximally fault-tolerant Hamiltonian paths and node-disjoint paths in k-ary n-cube interconnection networks under edge and vertex failures."
why_notable: "Yields concrete routing strategies for torus-based HPC fabrics that remain functional under high fault counts, with tight proofs of optimality."
- title: "MapReduce algorithms for robust center-based clustering in doubling metrics"
authors:
- Enrico Dandolo
- Alessio Mazzetto
- Andrea Pietracaprina
- Geppino Pucci
tldr: "Designs MapReduce algorithms for k-median and k-means clustering with provable approximation ratios that are robust to outliers in doubling metric spaces."
why_notable: "Delivers the first round-efficient MapReduce clustering algorithms with simultaneous robustness and approximation guarantees grounded in metric space theory."
- title: "DuMato: An efficient warp-centric subgraph enumeration system for GPU"
authors:
- Samuel Ferraz
- Vinícius Vitor dos Santos Dias
- Carlos H. C. Teixeira
- Srinivasan Parthasarathy 0001
- George Teodoro
- Wagner Meira Jr.
tldr: "Presents a warp-centric GPU programming model for subgraph enumeration that eliminates load imbalance through dynamic work redistribution across warps."
why_notable: "Achieves orders-of-magnitude speedups over CPU baselines on graph pattern mining by rethinking how irregular workloads are mapped onto SIMT hardware."
- title: "An efficient sequential consistency implementation with dynamic race detection for GPUs"
authors:
- Abdulaziz Tabbakh
- Murali Annavaram
tldr: "Implements sequential consistency on GPUs via a dynamic race detector that inserts fences only where data races are actually detected at runtime."
why_notable: "Shows that strong memory model guarantees on GPUs need not incur pervasive overhead, opening a path toward safer GPU programming models without sacrificing performance."
- title: "General-purpose data stream processing on heterogeneous architectures with WindFlow"
authors:
- Gabriele Mencagli
- Massimo Torquati
- Dalvan Griebler
- Alessandra Fais
- Marco Danelutto
tldr: "Extends the WindFlow library with a unified programming model and runtime that transparently targets CPUs, GPUs, and FPGAs for streaming dataflow applications."
why_notable: "Demonstrates practical performance portability for stream processing across radically different hardware, with a clean operator model grounded in parallel patterns theory."
- title: "Revisiting I/O bandwidth-sharing strategies for HPC applications"
authors:
- Anne Benoit
- Thomas Hérault
- Lucas Perotin
- Yves Robert
- Frédéric Vivien
tldr: "Analyzes optimal I/O bandwidth allocation policies for HPC checkpointing and data-intensive applications under shared storage systems, deriving scheduling algorithms with provable performance bounds."
why_notable: "Provides theoretically grounded guidance for I/O resource management at scale, a pervasive bottleneck in modern HPC deployments."
- title: "Scalable atomic broadcast: A leaderless hierarchical algorithm"
authors:
- Lucas V. Ruchel
- Edson Tavares de Camargo
- Luiz Antonio Rodrigues
- Rogério C. Turchetti
- Luciana Arantes
- Elias Procópio Duarte Jr.
tldr: "Proposes a leaderless hierarchical atomic broadcast protocol that eliminates single-leader bottlenecks and scales to large distributed systems with reduced message complexity."
why_notable: "Advances Byzantine-fault-tolerant broadcast by removing the leader as a scalability and availability bottleneck while preserving total-order guarantees."
- title: "Stab-FD: A cooperative and adaptive failure detector for wide area networks"
authors:
- Pierre Sens 0001
- Luciana Arantes
- Anubis Graciela de Moraes Rossetto
- Olivier Marin
tldr: "Presents a stabilizing failure detector that cooperatively adapts its timeout parameters across WAN nodes to achieve eventual accuracy under varying latencies."
why_notable: "Tackles the long-standing challenge of practical failure detection in geo-distributed systems with a rigorous self-stabilizing design that avoids static parameter tuning."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,110 @@
venue: JPDC
year: 2025
selected:
- title: "Throughput of Byzantine Broadcast"
authors:
- Ruomu Hou
- Haifeng Yu
- Prateek Saxena
tldr: "Establishes tight throughput bounds for Byzantine broadcast protocols and constructs algorithms that saturate those bounds, separating throughput from latency in the fault-tolerant broadcast landscape."
why_notable: "Provides the first rigorous throughput characterization of Byzantine broadcast, a fundamental primitive whose capacity limits were previously unquantified."
- title: "How to reduce the number of steps for (multi-valued validated) Byzantine agreement?"
authors:
- Baohan Huang
- Haibin Zhang
- Chao Liu 0039
- Shengli Liu 0001
- Yong Yu 0002
- Fangguo Zhang
- Liehuang Zhu
tldr: "Presents new Byzantine agreement protocols that lower the step complexity for multi-valued and validated variants, breaking barriers that have stood since the classical results."
why_notable: "Step complexity is a fundamental metric for distributed agreement; reducing it has direct implications for consensus latency in blockchains and replicated systems."
- title: "Locating a black hole in a dynamic ring"
authors:
- Giuseppe Antonio Di Luna
- Paola Flocchini
- Giuseppe Prencipe
- Nicola Santoro
tldr: "Solves the black-hole search problem on rings whose topology changes over time, establishing the agent and time complexity of locating a fatal node in a dynamic distributed environment."
why_notable: "Extends a classic distributed exploration problem to dynamic graphs, requiring new algorithmic techniques that are broadly applicable to fault detection in evolving networks."
- title: "Dispersion of mobile robots on directed anonymous graphs"
authors:
- Giuseppe F. Italiano
- Debasish Pattanayak
- Gokarna Sharma
tldr: "Characterizes the necessary and sufficient conditions for a group of mobile robots to disperse to distinct nodes of a directed anonymous graph, and provides optimal algorithms."
why_notable: "Directed anonymous graphs model asymmetric communication networks; the dispersion problem's resolution here advances the theory of autonomous distributed agents."
- title: "QPOPSS: Query and Parallelism Optimized Space-Saving for finding frequent stream elements"
authors:
- Victor Jarlow
- Charalampos Stylianopoulos
- Marina Papatriantafilou
tldr: "Redesigns the Space-Saving frequent-elements sketch for concurrent shared-memory execution, achieving high query throughput alongside update throughput without sacrificing approximation accuracy."
why_notable: "Bridges the gap between approximate streaming data structures and parallel execution, demonstrating that heavy-hitter summaries can scale on multicore without significant accuracy loss."
- title: "A parallel algorithm for minimum weight set cover with small neighborhood property"
authors:
- Yingli Ran
- Yaoyao Zhang
- Zhao Zhang 0002
tldr: "Gives a parallel approximation algorithm for minimum weight set cover instances where sets have bounded neighborhood size, achieving near-optimal approximation ratio in poly-logarithmic rounds."
why_notable: "Expands the frontier of problems admitting efficient parallel approximation, with implications for distributed network optimization where local structure can be exploited."
- title: "Optimizing parallel heterogeneous system efficiency: Dynamic task graph adaptation with recursive tasks"
authors:
- Nathalie Furmento
- Abdou Guermouche
- Gwenolé Lucas
- Thomas Morin
- Samuel Thibault
- Pierre-André Wacrenier
tldr: "Extends task-graph runtime systems to support recursive task generation, enabling dynamic adaptation of the task graph structure to improve load balance on heterogeneous CPU-GPU platforms."
why_notable: "Recursive task parallelism is essential for divide-and-conquer workloads; integrating it into heterogeneous runtimes closes a major gap in practical parallel programming models."
- title: "A scheduler to foster data locality for GPU and out-of-core task-based linear algebra applications"
authors:
- Maxime Gonthier
- Loris Marchal
- Samuel Thibault
tldr: "Proposes a data-locality-aware scheduler for task-based dense linear algebra that simultaneously manages GPU memory and out-of-core data transfers to minimize data movement."
why_notable: "Data movement dominates cost in large linear algebra computations; the scheduler's dual handling of GPU memory and disk I/O makes it practically relevant for exascale workloads."
- title: "Leveraging Multi-Instance GPUs through moldable task scheduling"
authors:
- Jorge Villarrubia
- Luis Costero
- Francisco D. Igual
- Katzalin Olcoz
tldr: "Develops a moldable task scheduling framework that dynamically partitions GPU compute across concurrent tasks using NVIDIA's Multi-Instance GPU feature to improve overall throughput."
why_notable: "MIG is a critical hardware feature for multi-tenant GPU clusters; this work provides the first scheduling framework that exploits it through principled moldable-task theory."
- title: "Integration framework for online thread throttling with thread and page mapping on NUMA systems"
authors:
- Janaina Schwarzrock
- Hiago Mayk G. de A. Rocha
- Arthur Francisco Lorenzon
- Samuel Xavier de Souza
- Antonio Carlos S. Beck
tldr: "Combines online thread-count throttling with NUMA-aware thread and page placement in a unified runtime framework, adaptively co-optimizing both dimensions to maximize performance."
why_notable: "Thread throttling and NUMA placement are typically managed independently; their joint online optimization yields measurable gains that neither technique alone achieves."
- title: "To repair or not to repair: Assessing fault resilience in MPI stencil applications"
authors:
- Roberto Rocco
- Elisabetta Boella
- Daniele Gregori
- Gianluca Palermo
tldr: "Systematically evaluates the cost-benefit trade-off between full fault recovery and partial resilience strategies for MPI stencil computations under process failures."
why_notable: "Provides practitioners with a principled decision framework for resilience in HPC applications, showing when expensive full recovery is justified versus cheaper degraded-mode execution."
- title: "A lightweight RDMA connection protocol based on post-hoc confirmation"
authors:
- Ke Wu 0003
- Dezun Dong
- Weixia Xu 0001
tldr: "Designs an RDMA connection protocol that defers acknowledgment to post-operation confirmation, drastically reducing connection setup overhead for short-lived high-frequency transfers."
why_notable: "RDMA setup latency is a critical bottleneck in disaggregated memory and distributed storage systems; this protocol's approach generalizes to any latency-sensitive fabric."

View File

@@ -0,0 +1,824 @@
venue: Middleware
year: 2024
source: dblp
count: 65
papers:
- title: 'Chasing Lightspeed Consensus: Fast Wide-Area Byzantine Replication with
Mercury'
authors:
- Christian Berger 0006
- Lívio Rodrigues
- Hans P. Reiser
- Vinicius Vielmo Cogo
- Alysson Bessani
year: '2024'
doi: 10.1145/3652892.3700756
url: https://doi.org/10.1145/3652892.3700756
dblp_key: conf/middleware/0006RRCB24
venue_name: Middleware
pages: 158-171
- title: 'A2L: User-Transparent Workload-Adaptive Asynchronous I/O Layer (industry
track)'
authors:
- Byoung Chul An
- Hanul Sung
- Hyeonsang Eom
year: '2024'
doi: 10.1145/3700824.3701098
url: https://doi.org/10.1145/3700824.3701098
dblp_key: conf/middleware/AnSE24
venue_name: Middleware Industry
pages: 36-42
- title: Towards SLO-Compliant and Cost-Effective Serverless Computing on Emerging
GPU Architectures
authors:
- Vivek M. Bhasi
- Aakash Sharma
- Rishabh Jain
- Jashwant Raj Gunasekaran
- Ashutosh Pattnaik
- Mahmut Taylan Kandemir
- Chita R. Das
year: '2024'
doi: 10.1145/3652892.3700760
url: https://doi.org/10.1145/3652892.3700760
dblp_key: conf/middleware/BhasiSJGPKD24
venue_name: Middleware
pages: 211-224
- title: Personalized Privacy-Preserving Federated Learning
authors:
- Cédric Boscher
- Nawel Benarba
- Fatima Elhattab
- Sara Bouchenak
year: '2024'
doi: 10.1145/3652892.3700785
url: https://doi.org/10.1145/3652892.3700785
dblp_key: conf/middleware/BoscherBEB24
venue_name: Middleware
pages: 454-466
- title: Comparative Analysis and Optimization of LoRA Adapter Co-serving for Large
Language Models
authors:
- Jiaxuan Chen
year: '2024'
doi: 10.1145/3704440.3704777
url: https://doi.org/10.1145/3704440.3704777
dblp_key: conf/middleware/Chen24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 27-28
- title: Towards Practical Homomorphic Aggregation in Byzantine-Resilient Distributed
Learning
authors:
- Antoine Choffrut
- Rachid Guerraoui
- Rafael Pinot
- Renaud Sirdey
- John Stephan
- Martin Zuber
year: '2024'
doi: 10.1145/3652892.3700783
url: https://doi.org/10.1145/3652892.3700783
dblp_key: conf/middleware/ChoffrutGPSSZ24
venue_name: Middleware
pages: 431-444
- title: 'QuickDrop: Efficient Federated Unlearning via Synthetic Data Generation'
authors:
- Akash Balasaheb Dhasade
- Yaohong Ding
- Song Guo 0001
- Anne-Marie Kermarrec
- Martijn de Vos
- Leijie Wu
year: '2024'
doi: 10.1145/3652892.3700764
url: https://doi.org/10.1145/3652892.3700764
dblp_key: conf/middleware/DhasadeD0KVW24
venue_name: Middleware
pages: 266-278
- title: A Conversational Assistant Framework for Automation
authors:
- Evelyn Duesterwald
- Vatche Isahagian
- K. R. Jayaram
- Ritesh Kumar
- Vinod Muthusamy
- Punleuk Oum
- Gegi Thomas
- Praveen Venkateswaran
year: '2024'
doi: 10.1145/3700824.3701093
url: https://doi.org/10.1145/3700824.3701093
dblp_key: conf/middleware/DuesterwaldIJKM24
venue_name: Middleware Industry
pages: 1-7
- title: Towards Resilience of Community-based Intrusion Detection
authors:
- Philipp Eichhammer
year: '2024'
doi: 10.1145/3704440.3704787
url: https://doi.org/10.1145/3704440.3704787
dblp_key: conf/middleware/Eichhammer24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 21-22
- title: 'Serverful Functions: Leveraging Servers in Complex Serverless Workflows
(industry track)'
authors:
- Germán T. Eizaguirre
- Daniel Barcelona Pons
- Aitor Arjona
- Gil Vernik
- Pedro García López
- Theodore Alexandrov
year: '2024'
doi: 10.1145/3700824.3701095
url: https://doi.org/10.1145/3700824.3701095
dblp_key: conf/middleware/EizaguirrePAVLA24
venue_name: Middleware Industry
pages: 15-21
- title: 'StreamSense: Policy-driven Semantic Video Search in Streaming Systems'
authors:
- Gerard Finol
- Arnau Gabriel
- Pedro García López
- Raúl Gracia Tinedo
- Luis Liu
- Reuben Docea
- Max Kirchner
- Sebastian Bodenstedt
year: '2024'
doi: 10.1145/3700824.3701097
url: https://doi.org/10.1145/3700824.3701097
dblp_key: conf/middleware/FinolGLTLDKB24
venue_name: Middleware Industry
pages: 29-35
- title: A Universal Graph Transaction-Log
authors:
- Luis Garcés-Erice
- Enrico Toniato
- Daniel Bauer 0001
- Peter Urbanetz
- Sean Rooney
year: '2024'
doi: 10.1145/3704440.3704773
url: https://doi.org/10.1145/3704440.3704773
dblp_key: conf/middleware/Garces-EriceT0U24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 1-2
- title: On the Semantic Overlap of Operators in Stream Processing Engines
authors:
- Vincenzo Gulisano
- Marina Papatriantafilou
- Alessandro Margara
year: '2024'
doi: 10.1145/3652892.3654790
url: https://doi.org/10.1145/3652892.3654790
dblp_key: conf/middleware/GulisanoPM24
venue_name: Middleware
pages: 8-21
- title: Consensus-Agnostic State-Machine Replication
authors:
- Alexander Heß
- Franz J. Hauck
- Echo Meißner
year: '2024'
doi: 10.1145/3652892.3700776
url: https://doi.org/10.1145/3652892.3700776
dblp_key: conf/middleware/HessHM24
venue_name: Middleware
pages: 341-353
- title: 'Menos: Split Fine-Tuning Large Language Models with Efficient GPU Memory
Sharing'
authors:
- Chenghao Hu
- Baochun Li
year: '2024'
doi: 10.1145/3652892.3700758
url: https://doi.org/10.1145/3652892.3700758
dblp_key: conf/middleware/HuL24
venue_name: Middleware
pages: 185-198
- title: 'Ripple: Large-Scale Service and Configuration Management in the Cloud'
authors:
- Shuping Ji
- Zhen Tang
- Wei Wang 0049
- Hui Li
- Jianguo Yao 0002
- Hans-Arno Jacobsen
year: '2024'
doi: 10.1145/3704440.3704786
url: https://doi.org/10.1145/3704440.3704786
dblp_key: conf/middleware/JiT0LYJ24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 19-20
- title: 'Ripple: Large-Scale Service and Configuration Management in the Cloud'
authors:
- Shuping Ji
- Zhen Tang
- Wei Wang 0049
- Hui Li
- Jianguo Yao 0002
- Hans-Arno Jacobsen
year: '2024'
doi: 10.1145/3652892.3700777
url: https://doi.org/10.1145/3652892.3700777
dblp_key: conf/middleware/JiTWLYJ24
venue_name: Middleware
pages: 354-366
- title: 'AsyncFilter: Detecting Poisoning Attacks in Asynchronous Federated Learning'
authors:
- Yufei Kang
- Baochun Li
year: '2024'
doi: 10.1145/3652892.3700787
url: https://doi.org/10.1145/3652892.3700787
dblp_key: conf/middleware/KangL24
venue_name: Middleware
pages: 481-493
- title: 'KDB: A Persistent Key-Value Data Store with Batch Updates and Snapshots'
authors:
- Tadeusz Kobus
- Maciej Kokocinski
- Krzysztof Kortas
- Pawel T. Wojciechowski
year: '2024'
doi: 10.1145/3704440.3704790
url: https://doi.org/10.1145/3704440.3704790
dblp_key: conf/middleware/KobusKKW24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 23-24
- title: Towards Embracing Object Granularity in Tiered Memory Management for Big
Data
authors:
- Maciej Kokocinski
- Tadeusz Kobus
- Krystian Chmielewski
- Rafal Pyzik
- Maciej Maciejewski
year: '2024'
doi: 10.1145/3704440.3704784
url: https://doi.org/10.1145/3704440.3704784
dblp_key: conf/middleware/KokocinskiKCPM24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 15-16
- title: 'Creek: A Mixed-Consistency Replication Scheme'
authors:
- Maciej Kokocinski
- Tadeusz Kobus
- Pawel T. Wojciechowski
year: '2024'
doi: 10.1145/3704440.3704785
url: https://doi.org/10.1145/3704440.3704785
dblp_key: conf/middleware/KokocinskiKW24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 17-18
- title: Targeting Tail Latency in Replicated Systems with Proactive Rejection
authors:
- Laura Lawniczak
- Tobias Distler
year: '2024'
doi: 10.1145/3652892.3700775
url: https://doi.org/10.1145/3652892.3700775
dblp_key: conf/middleware/LawniczakD24
venue_name: Middleware
pages: 327-340
- title: An LLM-driven Framework for Dynamic Infrastructure as Code Generation
authors:
- Junhee Lee
- Sungjoo Kang
- In-Young Ko
year: '2024'
doi: 10.1145/3704440.3704778
url: https://doi.org/10.1145/3704440.3704778
dblp_key: conf/middleware/LeeKK24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 9-10
- title: Towards Interoperability of APIs - an LLM-based approach
authors:
- René Lehmann
year: '2024'
doi: 10.1145/3704440.3704788
url: https://doi.org/10.1145/3704440.3704788
dblp_key: conf/middleware/Lehmann24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 29-30
- title: Enhancing Effective Bidirectional Isolation for Function Fusion in Serverless
Architectures
authors:
- Tianyu Li
- Yingpeng Chen
- Donghui Yu
- Yuanyuan Zhang 0002
- Bert Lagaisse
year: '2024'
doi: 10.1145/3652892.3654778
url: https://doi.org/10.1145/3652892.3654778
dblp_key: conf/middleware/LiCY0L24
venue_name: Middleware
pages: 1-7
- title: 'ColdPurge: Effecient Metadata Cache Cleaning via Accurate Online Data Hotness
Tracking'
authors:
- Yuhang Li 0002
- Rong Gu 0001
- Simian Li
- Baohan Wang
- Wei Yu
year: '2024'
doi: 10.1145/3700824.3701094
url: https://doi.org/10.1145/3700824.3701094
dblp_key: conf/middleware/LiGLWY24
venue_name: Middleware Industry
pages: 8-14
- title: 'Deep Optimizer States: Towards Scalable Training of Transformer Models using
Interleaved Offloading'
authors:
- Avinash Maurya
- Jie Ye
- M. Mustafa Rafique
- Franck Cappello
- Bogdan Nicolae
year: '2024'
doi: 10.1145/3652892.3700781
url: https://doi.org/10.1145/3652892.3700781
dblp_key: conf/middleware/MauryaYRCN24
venue_name: Middleware
pages: 404-416
- title: 'L3: Latency-aware Load Balancing in Multi-Cluster Service Mesh'
authors:
- Olivier Michaelis
- Stefan Schmid 0001
- Habib Mostafaei
year: '2024'
doi: 10.1145/3652892.3654793
url: https://doi.org/10.1145/3652892.3654793
dblp_key: conf/middleware/Michaelis0M24
venue_name: Middleware
pages: 49-61
- title: Optimal Resource Efficiency with Fairness in Heterogeneous GPU Clusters
authors:
- Zizhao Mo
- Huanle Xu
- Wing Cheong Lau
year: '2024'
doi: 10.1145/3652892.3654792
url: https://doi.org/10.1145/3652892.3654792
dblp_key: conf/middleware/MoXL24
venue_name: Middleware
pages: 36-48
- title: 'HORSE: Ultra-low latency workloads on FaaS platforms'
authors:
- Djob Mvondo
- François Taïani
- Yérom-David Bromberg
year: '2024'
doi: 10.1145/3652892.3700784
url: https://doi.org/10.1145/3652892.3700784
dblp_key: conf/middleware/MvondoTB24
venue_name: Middleware
pages: 445-453
- title: 'UTwinVM: Reliable hints on the effects of hypervisor updates on VMs in the
Cloud'
authors:
- Djob Mvondo
- Tong Xing 0002
- Antonio Barbalace
year: '2024'
doi: 10.1145/3652892.3700752
url: https://doi.org/10.1145/3652892.3700752
dblp_key: conf/middleware/MvondoXB24
venue_name: Middleware
pages: 103-116
- title: Near-Storage Processing in FaaS Environments with Funclets
authors:
- Alan Nair
- Raven Szewczyk
- Donald Jennings
- Antonio Barbalace
year: '2024'
doi: 10.1145/3652892.3700755
url: https://doi.org/10.1145/3652892.3700755
dblp_key: conf/middleware/NairSJB24
venue_name: Middleware
pages: 145-157
- title: 'Dexter: A Performance-Cost Efficient Resource Allocation Manager for Serverless
Data Analytics'
authors:
- Anna Maria Nestorov
- Diego Marrón
- Alberto Gutierrez-Torre
- Chen Wang 0039
- Claudia Misale
- Alaa Youssef
- David Carrera 0001
- Josep Lluís Berral
year: '2024'
doi: 10.1145/3652892.3700753
url: https://doi.org/10.1145/3652892.3700753
dblp_key: conf/middleware/NestorovMG0MY0B24
venue_name: Middleware
pages: 117-130
- title: 'Cannikin: Optimal Adaptive Distributed DNN Training over Heterogeneous Clusters'
authors:
- Chengyi Nie
- Jessica Maghakian
- Zhenhua Liu 0002
year: '2024'
doi: 10.1145/3652892.3700767
url: https://doi.org/10.1145/3652892.3700767
dblp_key: conf/middleware/NieM024
venue_name: Middleware
pages: 299-312
- title: Grid-aware Energy Management by Data Center Workload Control Across Multiple
Data Centers
authors:
- Yoji Ozawa
- Satoshi Kaneko
- Taku Okamura
- Tetsu Moriwake
- Yuichi Nabetani
- Daiki Shimizu
- Soichiro Kumagai
year: '2024'
doi: 10.1145/3704440.3704781
url: https://doi.org/10.1145/3704440.3704781
dblp_key: conf/middleware/OzawaKOMNSK24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 13-14
- title: 'FDPVirt: Investigating the Behavior of FDP SSDs'
authors:
- Joonyeop Park
- Hyeonsang Eom
year: '2024'
doi: 10.1145/3704440.3704792
url: https://doi.org/10.1145/3704440.3704792
dblp_key: conf/middleware/ParkE24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 25-26
- title: Fine-Grained CUDA Call Interception for GPU Virtualization
authors:
- Manos Pavlidakis
- Anargyros Argyros
- Stelios Mavridis
- Giorgos Vasiliadis
- Angelos Bilas
year: '2024'
doi: 10.1145/3704440.3704779
url: https://doi.org/10.1145/3704440.3704779
dblp_key: conf/middleware/PavlidakisAMVB24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 11-12
- title: SCALE-Ahead-Of-Time Compilation of CUDA for AMD GPUs
authors:
- Manos Pavlidakis
- Chris Kitching
- Nicholas Tomlinson
- Michael Søndergaard
year: '2024'
doi: 10.1145/3704440.3704782
url: https://doi.org/10.1145/3704440.3704782
dblp_key: conf/middleware/PavlidakisKTS24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 5-6
- title: 'Guardian: Safe GPU Sharing in Multi-Tenant Environments'
authors:
- Manos Pavlidakis
- Giorgos Vasiliadis
- Stelios Mavridis
- Anargyros Argyros
- Antony Chazapis
- Angelos Bilas
year: '2024'
doi: 10.1145/3652892.3700768
url: https://doi.org/10.1145/3652892.3700768
dblp_key: conf/middleware/PavlidakisVMACB24
venue_name: Middleware
pages: 313-326
- title: Distributed Computation Offloading in Heterogeneous Edge Environments
authors:
- Anton Semjonov
year: '2024'
doi: 10.1145/3704440.3704793
url: https://doi.org/10.1145/3704440.3704793
dblp_key: conf/middleware/Semjonov24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 31-32
- title: Zero-Setup Computation Offloading to Heterogeneous Volunteer Devices Using
Web Browsers
authors:
- Anton Semjonov
- Janick Edinger
year: '2024'
doi: 10.1145/3704440.3704776
url: https://doi.org/10.1145/3704440.3704776
dblp_key: conf/middleware/SemjonovE24
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 3-4
- title: 'BASS: A Resource Orchestrator to Account for Vagaries in Network Conditions
in Community Wi-Fi Mesh'
authors:
- Manasvini Sethuraman
- Anirudh Sarma
- Netra Ghaisas
- Adwait Bauskar
- Ashutosh Dhekne
- Anand Sivasubramaniam
- Kishore Ramachandran
year: '2024'
doi: 10.1145/3652892.3700754
url: https://doi.org/10.1145/3652892.3700754
dblp_key: conf/middleware/SethuramanSGBDS24
venue_name: Middleware
pages: 131-144
- title: 'SpotVerse: Optimizing Bioinformatics Workflows with Multi-Region Spot Instances
in Galaxy and Beyond'
authors:
- Myungjun Son
- Gulsum Gudukbay Akbulut
- Mahmut Taylan Kandemir
year: '2024'
doi: 10.1145/3652892.3700750
url: https://doi.org/10.1145/3652892.3700750
dblp_key: conf/middleware/SonAK24
venue_name: Middleware
pages: 74-87
- title: 'Microcosm: A Scalable Transaction Processing Scheme for Modular Blockchain
(Industry Track)'
authors:
- Mansub Song
- Hyojin Song
- Nadine Ben Amar
- Yunhyeong Seo
- Yongseok Son
- Hyeonsang Eom
year: '2024'
doi: 10.1145/3700824.3701096
url: https://doi.org/10.1145/3700824.3701096
dblp_key: conf/middleware/SongSASSE24
venue_name: Middleware Industry
pages: 22-28
- title: 'zkStream: a Framework for Trustworthy Stream Processing'
authors:
- Janwillem Swalens
- Lode Hoste
- Emad Heydari Beni
- Lieven Trappeniers
year: '2024'
doi: 10.1145/3652892.3700763
url: https://doi.org/10.1145/3652892.3700763
dblp_key: conf/middleware/SwalensHBT24
venue_name: Middleware
pages: 252-265
- title: 'Amalgam: A Framework for Obfuscated Neural Network Training on the Cloud'
authors:
- Sifat Ut Taki
- Spyridon Mastorakis
year: '2024'
doi: 10.1145/3652892.3700762
url: https://doi.org/10.1145/3652892.3700762
dblp_key: conf/middleware/TakiM24
venue_name: Middleware
pages: 238-251
- title: Towards Affordable Reproducibility Using Scalable Capture and Comparison
of Intermediate Multi-Run Results
authors:
- Nigel Tan
- Kevin Assogba
- Walter J. Ashworth
- Befikir Bogale
- Franck Cappello
- M. Mustafa Rafique
- Michela Taufer
- Bogdan Nicolae
year: '2024'
doi: 10.1145/3652892.3700780
url: https://doi.org/10.1145/3652892.3700780
dblp_key: conf/middleware/TanAABCRTN24
venue_name: Middleware
pages: 392-403
- title: 'RoleML: a Role-Oriented Programming Model for Customizable Distributed Machine
Learning on Edges'
authors:
- Yuesheng Tan
- Lei Yang 0024
- Wenhao Li
- Yuda Wu
year: '2024'
doi: 10.1145/3652892.3700765
url: https://doi.org/10.1145/3652892.3700765
dblp_key: conf/middleware/TanYLW24
venue_name: Middleware
pages: 279-291
- title: 'Privagic: automatic code partitioning with explicit secure typing'
authors:
- Subashiny Tanigassalame
- Yohan Pipereau
- Adam Chader
- Jana Toljaga
- Gaël Thomas 0001
year: '2024'
doi: 10.1145/3652892.3700759
url: https://doi.org/10.1145/3652892.3700759
dblp_key: conf/middleware/TanigassalamePC24
venue_name: Middleware
pages: 199-210
- title: 'vPIM: Processing-in-Memory Virtualization'
authors:
- Dufy Teguia
- Jiaxuan Chen
- Stella Bitchebe
- Oana Balmau
- Alain Tchana
year: '2024'
doi: 10.1145/3652892.3700782
url: https://doi.org/10.1145/3652892.3700782
dblp_key: conf/middleware/TeguiaCBBT24
venue_name: Middleware
pages: 417-430
- title: 'B-Side: Binary-Level Static System Call Identification'
authors:
- Gaspard Thévenon
- Kevin Nguetchouang
- Kahina Lazri
- Alain Tchana
- Pierre Olivier
year: '2024'
doi: 10.1145/3652892.3700761
url: https://doi.org/10.1145/3652892.3700761
dblp_key: conf/middleware/ThevenonNLTO24
venue_name: Middleware
pages: 225-237
- title: '"Back to the Byte": Towards Byte-oriented Semantics for Streaming
Storage'
authors:
- Raúl Gracia Tinedo
- Flavio Junqueira
- Tom Kaitchuck
year: '2024'
doi: 10.1145/3700824.3701099
url: https://doi.org/10.1145/3700824.3701099
dblp_key: conf/middleware/TinedoJK24
venue_name: Middleware Industry
pages: 43-49
- title: Userland Page Table - A Key for Transparent Persistent Memory
authors:
- Jana Toljaga
- Nicolas Derumigny
- Yohan Pipereau
- Mathieu Bacou
- Gaël Thomas 0001
year: '2024'
doi: 10.1145/3704440.3704774
url: https://doi.org/10.1145/3704440.3704774
dblp_key: conf/middleware/ToljagaDPB024
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 7-8
- title: 'STRATA: Random Forests going Serverless'
authors:
- Dimitrios Tomaras
- Sebastian Buschjäger
- Vana Kalogeraki
- Katharina Morik
- Dimitrios Gunopulos
year: '2024'
doi: 10.1145/3652892.3654791
url: https://doi.org/10.1145/3652892.3654791
dblp_key: conf/middleware/TomarasBKMG24
venue_name: Middleware
pages: 22-35
- title: 'PvCC: A vCPU Scheduling Policy for DPDK-applied Systems at Multi-Tenant
Edge Data Centers'
authors:
- Yuki Tsujimoto
- Yuki Sato
- Kenichi Yasukata
- Kenta Ishiguro
- Kenji Kono
year: '2024'
doi: 10.1145/3652892.3700779
url: https://doi.org/10.1145/3652892.3700779
dblp_key: conf/middleware/TsujimotoSYIK24
venue_name: Middleware
pages: 379-391
- title: 'SeqCDC: Hashless Content-Defined Chunking for Data Deduplication'
authors:
- Sreeharsha Udayashankar
- Abdelrahman Baba
- Samer Al-Kiswany
year: '2024'
doi: 10.1145/3652892.3700766
url: https://doi.org/10.1145/3652892.3700766
dblp_key: conf/middleware/UdayashankarBA24
venue_name: Middleware
pages: 292-298
- title: 'Banyan: Fast Rotating Leader BFT'
authors:
- Yann Vonlanthen
- Jakub Sliwinski
- Massimo Albarello
- Roger Wattenhofer
year: '2024'
doi: 10.1145/3652892.3700788
url: https://doi.org/10.1145/3652892.3700788
dblp_key: conf/middleware/VonlanthenSAW24
venue_name: Middleware
pages: 494-507
- title: 'FLEdge: Benchmarking Federated Learning Applications in Edge Computing Systems'
authors:
- Herbert Woisetschläger
- Alexander Erben
- Ruben Mayer
- Shiqiang Wang 0001
- Hans-Arno Jacobsen
year: '2024'
doi: 10.1145/3652892.3700751
url: https://doi.org/10.1145/3652892.3700751
dblp_key: conf/middleware/WoisetschlagerE24
venue_name: Middleware
pages: 88-102
- title: 'sMVX: Multi-Variant Execution on Selected Code Paths'
authors:
- Sengming Yeoh
- Xiaoguang Wang 0003
- Jae-Won Jang
- Binoy Ravindran
year: '2024'
doi: 10.1145/3652892.3654794
url: https://doi.org/10.1145/3652892.3654794
dblp_key: conf/middleware/Yeoh0JR24
venue_name: Middleware
pages: 62-73
- title: 'LightZone: Lightweight Hardware-Assisted In-Process Isolation for ARM64'
authors:
- Ziqi Yuan
- Siyu Hong
- Ruorong Guo
- Rui Chang
- Mingyu Gao 0001
- Wenbo Shen
- Yajin Zhou
year: '2024'
doi: 10.1145/3652892.3700786
url: https://doi.org/10.1145/3652892.3700786
dblp_key: conf/middleware/YuanHGCGSZ24
venue_name: Middleware
pages: 467-480
- title: 'In Serverless, OS Scheduler Choice Costs Money: A Hybrid Scheduling Approach
for Cheaper FaaS'
authors:
- Yuxuan Zhao 0003
- Weikang Weng
- Rob van Nieuwpoort
- Alexandru Uta
year: '2024'
doi: 10.1145/3652892.3700757
url: https://doi.org/10.1145/3652892.3700757
dblp_key: conf/middleware/ZhaoWNU24
venue_name: Middleware
pages: 172-184
- title: 'Spyker: Asynchronous Multi-Server Federated Learning for Geo-Distributed
Clients'
authors:
- Yuncong Zuo
- Bart Cox
- Lydia Y. Chen
- Jérémie Decouchant
year: '2024'
doi: 10.1145/3652892.3700778
url: https://doi.org/10.1145/3652892.3700778
dblp_key: conf/middleware/ZuoCCD24
venue_name: Middleware
pages: 367-378
- title: Proceedings of the 25th International Middleware Conference, MIDDLEWARE 2024,
Hong Kong, SAR, China, December 2-6, 2024
authors:
- Jiannong Cao 0001
- Zhi Jin
- Valerio Schiavoni
- Janick Edinger
year: '2024'
doi: 10.1145/3652892
url: https://doi.org/10.1145/3652892
dblp_key: conf/middleware/2024
venue_name: Middleware
pages: null
- title: Proceedings of the 25th International Middleware Conference Industrial Track,
Middleware Industrial Track 2024, Hong Kong, SAR, China, December 2-6, 2024
authors: []
year: '2024'
doi: 10.1145/3700824
url: https://doi.org/10.1145/3700824
dblp_key: conf/middleware/2024i
venue_name: Middleware Industry
pages: null
- title: 'Proceedings of the 25th International Middleware Conference: Demos, Posters
and Doctoral Symposium, Middleware 2024, Hong Kong, SAR, China, December 2-6,
2024'
authors: []
year: '2024'
doi: 10.1145/3704440
url: https://doi.org/10.1145/3704440
dblp_key: conf/middleware/2024p
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: null

View File

@@ -0,0 +1,60 @@
venue: Middleware
year: 2024
date: "2024-12-02"
tags: [distributed-systems, edge-computing, cloud]
selected:
- dblp_key: "conf/middleware/0006RRCB24"
title: "Chasing Lightspeed Consensus: Fast Wide-Area Byzantine Replication with Mercury"
tldr: "Mercury is a wide-area Byzantine fault-tolerant replication protocol that minimises latency by exploiting geographic locality and pipelining to approach the theoretical lightspeed bound."
why_notable: "Achieving near-lightspeed latency in Byzantine replication across wide-area networks has been a long-standing open challenge; Mercury's design demonstrates it is practically attainable. The result raises the bar for what production BFT middleware can deliver in geo-distributed deployments."
- dblp_key: "conf/middleware/Michaelis0M24"
title: "L3: Latency-aware Load Balancing in Multi-Cluster Service Mesh"
tldr: "L3 introduces a latency-aware load-balancing layer for multi-cluster service meshes that dynamically routes requests based on real-time latency measurements rather than static weights."
why_notable: "Service meshes are now the de-facto inter-service communication fabric in cloud-native stacks, yet most shipped load balancers remain latency-oblivious; L3 shows measurable tail-latency improvements in realistic multi-cluster topologies. Its design integrates cleanly with existing mesh control planes, giving operators a low-friction adoption path."
- dblp_key: "conf/middleware/SwalensHBT24"
title: "zkStream: a Framework for Trustworthy Stream Processing"
tldr: "zkStream applies zero-knowledge proofs to stream processing pipelines so that consumers can cryptographically verify the correctness of aggregated results without re-executing the pipeline."
why_notable: "Trustworthy stream processing has historically required either trusted execution environments or full result recomputation; zkStream shows that ZK proofs are now practical enough for continuous dataflow workloads. This has direct implications for regulatory-compliance and cross-organisation data sharing scenarios."
- dblp_key: "conf/middleware/TomarasBKMG24"
title: "STRATA: Random Forests going Serverless"
tldr: "STRATA decomposes random-forest inference into fine-grained serverless functions, exploiting embarrassing parallelism to cut inference latency while bounding cost."
why_notable: "Mapping classical ensemble models onto FaaS platforms exposes a new class of ML inference workloads for serverless runtimes, well beyond the simple stateless functions they were designed for. The cost-latency trade-off analysis provides a practical blueprint for teams already operating serverless infrastructure who want to serve ML models without dedicated GPU instances."
- dblp_key: "conf/middleware/MvondoTB24"
title: "HORSE: Ultra-low latency workloads on FaaS platforms"
tldr: "HORSE is a FaaS runtime extension that achieves sub-millisecond cold-start and execution latency for latency-critical functions by pre-warming micro-VMs and bypassing the standard invocation control plane."
why_notable: "The conventional wisdom that serverless is unsuitable for latency-critical workloads is directly challenged here; the authors achieve latencies competitive with always-on microservices. This opens the door to unifying latency-tolerant and latency-critical workloads under a single FaaS billing model."
- dblp_key: "conf/middleware/ZhaoWNU24"
title: "In Serverless, OS Scheduler Choice Costs Money: A Hybrid Scheduling Approach for Cheaper FaaS"
tldr: "The paper quantifies how the Linux kernel scheduler directly inflates FaaS platform costs and proposes a hybrid scheduling policy that cuts CPU billing by significant margins without degrading function latency."
why_notable: "The finding that OS-level scheduling decisions have a measurable monetary impact on cloud provider bills is surprising and practically important for both FaaS platform operators and tenants. The proposed hybrid scheduler is deployable without changes to user functions or the FaaS API surface."
- dblp_key: "conf/middleware/JiTWLYJ24"
title: "Ripple: Large-Scale Service and Configuration Management in the Cloud"
tldr: "Ripple is a scalable configuration-propagation system for cloud services that guarantees consistency and low-latency delivery of configuration updates across tens of thousands of service instances."
why_notable: "Configuration drift is a leading cause of production incidents in large-scale microservice deployments; Ripple demonstrates that consistent, fast propagation is achievable at cloud scale without sacrificing availability. The industry provenance of the work suggests it addresses real operational pain points at hyperscaler deployments."
- dblp_key: "conf/middleware/WoisetschlagerE24"
title: "FLEdge: Benchmarking Federated Learning Applications in Edge Computing Systems"
tldr: "FLEdge provides a comprehensive benchmark suite for federated learning on edge hardware, covering realistic device heterogeneity, network variability, and energy constraints."
why_notable: "Reproducible evaluation of federated learning at the edge has been hindered by the absence of a standard benchmark; FLEdge fills this gap with a methodology grounded in real edge-device profiles. The benchmark is expected to become a reference point for comparing future edge FL middleware."
- dblp_key: "conf/middleware/TanYLW24"
title: "RoleML: a Role-Oriented Programming Model for Customizable Distributed Machine Learning on Edges"
tldr: "RoleML introduces a role-oriented abstraction that lets developers compose distributed ML training and inference topologies on heterogeneous edge nodes without coupling application logic to a specific communication or aggregation pattern."
why_notable: "Existing distributed ML frameworks force a tight coupling between the training algorithm and its communication topology, making it hard to adapt to the heterogeneous, dynamic connectivity of edge environments; RoleML's role abstraction decouples these concerns. The model shows how programming-model innovation at the middleware level can substantially reduce the engineering burden of deploying ML at the edge."
- dblp_key: "conf/middleware/NestorovMG0MY0B24"
title: "Dexter: A Performance-Cost Efficient Resource Allocation Manager for Serverless Data Analytics"
tldr: "Dexter automatically right-sizes serverless function resources for data-analytics jobs by learning cost and performance models online, reducing cloud spend while meeting latency SLOs."
why_notable: "Serverless data analytics workloads exhibit highly variable resource needs that defeat static provisioning; Dexter's online learning approach closes the feedback loop between observed performance and resource allocation in a way that is transparent to the user's code. The evaluation on real analytics pipelines shows double-digit cost reductions compared to vendor-default configurations."
- dblp_key: "conf/middleware/EizaguirrePAVLA24"
title: "Serverful Functions: Leveraging Servers in Complex Serverless Workflows (industry track)"
tldr: "Serverful Functions extends the serverless programming model with the ability to transparently route parts of a workflow to persistent server processes when stateful or long-running operations make pure FaaS impractical."
why_notable: "The serverless/serverful boundary is a persistent friction point for workflow authors dealing with state or warm-data locality; this industry paper demonstrates a production-ready hybrid that lets a single workflow span both worlds without application-level awareness. It signals a convergence trend that will shape the next generation of FaaS platforms."

View File

@@ -0,0 +1,620 @@
venue: Middleware
year: 2025
source: dblp
count: 52
papers:
- title: Towards Improving Performance Efficiency of Serverless Platforms
authors:
- Amit Samanta 0001
year: '2025'
doi: 10.1145/3721464.3777427
url: https://doi.org/10.1145/3721464.3777427
dblp_key: conf/middleware/000125
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 14-18
- title: Efficient Performance Guarantees for Function-as-a-Service with Cloud Allocators
authors:
- Hai Duc Nguyen 0005
- Andrew A. Chien
year: '2025'
doi: 10.1145/3721462.3730948
url: https://doi.org/10.1145/3721462.3730948
dblp_key: conf/middleware/0005C25
venue_name: Middleware
pages: 99-113
- title: 'Argus: Quality-Aware High-Throughput Text-to-Image Inference Serving System'
authors:
- Shubham Agarwal 0007
- Subrata Mitra
- Saud Iqbal
year: '2025'
doi: 10.1145/3721462.3770765
url: https://doi.org/10.1145/3721462.3770765
dblp_key: conf/middleware/0007MI25
venue_name: Middleware
pages: 45-58
- title: 'Capybara: an Edge-Friendly Distributed Object Store for Diverse Serverless
Functions'
authors:
- Xin Chen 0084
- Manoj Prabhakar Paidiparthy
- Chen Qian 0001
- Liting Hu
year: '2025'
doi: 10.1145/3721462.3730946
url: https://doi.org/10.1145/3721462.3730946
dblp_key: conf/middleware/0084P0H25
venue_name: Middleware
pages: 31-44
- title: 'CliqueSensus: Ephemeral Overlays for Efficient Attestation Dissemination
in Ethereum 2.0'
authors:
- Alexandros Antonov
- Evangelos Kolyvas
- Spyros Voulgaris
year: '2025'
doi: 10.1145/3721462.3730958
url: https://doi.org/10.1145/3721462.3730958
dblp_key: conf/middleware/AntonovKV25
venue_name: Middleware
pages: 482-494
- title: 'XChainWatcher: Identifying Anomalies in Cross-Chain Bridges'
authors:
- André Augusto
- Rafael Belchior
- Jonas Pfannschmidt
- André Vasconcelos 0001
- Miguel Correia 0001
year: '2025'
doi: 10.1145/3721462.3770781
url: https://doi.org/10.1145/3721462.3770781
dblp_key: conf/middleware/AugustoBP0025
venue_name: Middleware
pages: 413-426
- title: 'Terraform: A Heterogeneity-Aware Client Selection Methodology For Efficient
Federated Learning'
authors:
- Nihal Balivada
year: '2025'
doi: 10.1145/3721464.3777433
url: https://doi.org/10.1145/3721464.3777433
dblp_key: conf/middleware/Balivada25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 33-34
- title: Leveraging Approximate Caching for Faster Retrieval-Augmented Generation
authors:
- Shai Bergman
- Anne-Marie Kermarrec
- Diana Petrescu
- Rafael Pires 0001
- Mathis Randl
- Martijn de Vos
- Ji Zhang 0035
year: '2025'
doi: 10.1145/3721462.3770776
url: https://doi.org/10.1145/3721462.3770776
dblp_key: conf/middleware/BergmanKP0RV025
venue_name: Middleware
pages: 340-353
- title: Middleware Systems for Efficient and Robust Distributed Machine Learning
authors:
- Rahul Atul Bhope
year: '2025'
doi: 10.1145/3721464.3777428
url: https://doi.org/10.1145/3721464.3777428
dblp_key: conf/middleware/Bhope25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 19-22
- title: 'Shift Happens: Mixture of Experts based Continual Adaptation in Federated
Learning'
authors:
- Rahul Atul Bhope
- K. R. Jayaram
- Praveen Venkateswaran
- Nalini Venkatasubramanian
year: '2025'
doi: 10.1145/3721462.3770784
url: https://doi.org/10.1145/3721462.3770784
dblp_key: conf/middleware/BhopeJVV25
venue_name: Middleware
pages: 455-468
- title: In-Context Example Ordering for LLM-Based API Sequence Generation
authors:
- Rahul Atul Bhope
- Praveen Venkateswaran
- K. R. Jayaram
- Vatche Isahagian
- Vinod Muthusamy
- Nalini Venkatasubramanian
year: '2025'
doi: 10.1145/3721464.3777432
url: https://doi.org/10.1145/3721464.3777432
dblp_key: conf/middleware/BhopeVJIMV25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 7-9
- title: 'Agentic AI Serverless Code Generation: Towards Autonomous Improvement of
Performance, Cost, and Code Quality'
authors:
- Xinghan Chen
year: '2025'
doi: 10.1145/3721464.3777437
url: https://doi.org/10.1145/3721464.3777437
dblp_key: conf/middleware/Chen25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 39-40
- title: 'EdgeConnector: Enabling Seamless and Efficient Cross-Cluster Device Access
in Edge Environment'
authors:
- Yunna Cui
- Liwei Shen
- Bingkun Sun
- Wente Lu
- Haojie Zhang
- Xin Peng 0001
year: '2025'
doi: 10.1145/3721462.3730949
url: https://doi.org/10.1145/3721462.3730949
dblp_key: conf/middleware/CuiSSLZ025
venue_name: Middleware
pages: 114-125
- title: Model and Agentic AI-driven Middleware for Distributed Systems Design and
Validation
authors:
- Sanjana Das
year: '2025'
doi: 10.1145/3721464.3777430
url: https://doi.org/10.1145/3721464.3777430
dblp_key: conf/middleware/Das25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 27-28
- title: 'DnD: Automating Discovery and Deployment of Realistic Network Topologies
for Cyber Defense'
authors:
- Sanjana Das
- Akhilesh Raj
- Himanshu Neema
- Daniel Balasubramanian
- Aniruddha Gokhale
year: '2025'
doi: 10.1145/3721464.3777429
url: https://doi.org/10.1145/3721464.3777429
dblp_key: conf/middleware/DasRNBG25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 5-6
- title: 'Full Trust Alchemist: Reforging Attestation for Cloud-based Confidential
Workloads'
authors:
- Anna Galanou
- Florian Lubitz
- Hajeong Jeon
- Christof Fetzer
- Rüdiger Kapitza
year: '2025'
doi: 10.1145/3721462.3770778
url: https://doi.org/10.1145/3721462.3770778
dblp_key: conf/middleware/GalanouLJFK25
venue_name: Middleware
pages: 369-382
- title: 'Recipe: Hardware-Accelerated Replication Protocols: Rethinking Crash Fault
Tolerance Protocols for Untrusted Cloud Environments'
authors:
- Dimitra Giantsidi
- Emmanouil Giortamis
- Julian Pritzi
- Maurice Bailleu
- Manos Kapritsos
- Pramod Bhatotia
year: '2025'
doi: 10.1145/3721462.3770763
url: https://doi.org/10.1145/3721462.3770763
dblp_key: conf/middleware/GiantsidiGPBKB25
venue_name: Middleware
pages: 1-15
- title: 'Stabl: The Sensitivity of Blockchains to Failures'
authors:
- Vincent Gramoli
- Rachid Guerraoui
- Andrei Lebedev
- Gauthier Voron
year: '2025'
doi: 10.1145/3721462.3730952
url: https://doi.org/10.1145/3721462.3730952
dblp_key: conf/middleware/GramoliGLV25
venue_name: Middleware
pages: 202-214
- title: Achieving dependable IoT systems through adaptive and continual learning
frameworks
authors:
- Ragini Gupta
year: '2025'
doi: 10.1145/3721464.3777436
url: https://doi.org/10.1145/3721464.3777436
dblp_key: conf/middleware/Gupta25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 23-26
- title: A Hybrid Runtime for Function-as-a-Service at the Edge
authors:
- Adam Hall
- Umakishore Ramachandran
year: '2025'
doi: 10.1145/3721462.3770785
url: https://doi.org/10.1145/3721462.3770785
dblp_key: conf/middleware/HallR25
venue_name: Middleware
pages: 469-481
- title: 'Adjusted Objects: An Efficient and Principled Approach to Scalable Programming'
authors:
- Boubacar Kane
- Pierre Sutra
year: '2025'
doi: 10.1145/3721462.3730953
url: https://doi.org/10.1145/3721462.3730953
dblp_key: conf/middleware/KaneS25
venue_name: Middleware
pages: 215-227
- title: Decentralized Federated Learning with Adaptive Aggregator Selection
authors:
- Muhammad Kaleem Ullah Khan
year: '2025'
doi: 10.1145/3721464.3777431
url: https://doi.org/10.1145/3721464.3777431
dblp_key: conf/middleware/Khan25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 29-32
- title: 'MTAT: Adaptive Fast Memory Management for Co-located Latency-Critical Workloads
in Tiered Memory System'
authors:
- Minho Kim
- Seonggyu Han
- Gyeongseo Park
- Daehoon Kim 0001
year: '2025'
doi: 10.1145/3721462.3770767
url: https://doi.org/10.1145/3721462.3770767
dblp_key: conf/middleware/KimHP025
venue_name: Middleware
pages: 86-98
- title: 'Always-On, Always-Mine: Federated Recommendation Systems on Personal Home
Routers'
authors:
- Zhengquan Li
- Myungjin Lee
- Zheng Song 0001
year: '2025'
doi: 10.1145/3721462.3770775
url: https://doi.org/10.1145/3721462.3770775
dblp_key: conf/middleware/LiL025
venue_name: Middleware
pages: 326-339
- title: 'Roadrunner: Accelerating Data Delivery to WebAssembly-Based Serverless Functions'
authors:
- Cynthia Marcelino
- Thomas W. Pusztai
- Stefan Nastic
year: '2025'
doi: 10.1145/3721462.3770777
url: https://doi.org/10.1145/3721462.3770777
dblp_key: conf/middleware/MarcelinoPN25
venue_name: Middleware
pages: 354-368
- title: 'Message Size Matters: AlterBFT's Approach to Practical Synchronous
BFT in Public Clouds'
authors:
- Nenad Milosevic
- Daniel Cason
- Zarko Milosevic 0001
- Robert Soulé
- Fernando Pedone
year: '2025'
doi: 10.1145/3721462.3770782
url: https://doi.org/10.1145/3721462.3770782
dblp_key: conf/middleware/MilosevicC0SP25
venue_name: Middleware
pages: 427-440
- title: Toward Thorough and Practical Integration Testing of Replicated Data Systems
authors:
- Provakar Mondal
year: '2025'
doi: 10.1145/3721464.3777426
url: https://doi.org/10.1145/3721464.3777426
dblp_key: conf/middleware/Mondal25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 10-13
- title: 'ER-π: Exhaustive Interleaving Replay for Testing Replicated Data Library
Integration'
authors:
- Provakar Mondal
- Eli Tilevich
year: '2025'
doi: 10.1145/3721462.3730947
url: https://doi.org/10.1145/3721462.3730947
dblp_key: conf/middleware/MondalT25
venue_name: Middleware
pages: 59-71
- title: Understanding Tradeoffs of Replicated Data Library Integration Strategies
in Multilingual Environments
authors:
- Provakar Mondal
- Eli Tilevich
year: '2025'
doi: 10.1145/3721464.3777425
url: https://doi.org/10.1145/3721464.3777425
dblp_key: conf/middleware/MondalT25a
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 3-4
- title: 'Clair Obscur: The Light and Shadow of System Call Interposition - From Pitfalls
to Solutions with K23'
authors:
- Jesús María Gómez Moreno
- Vissarion Moutafis
- Antreas Dionysiou
- Fernando Kuipers
- Georgios Smaragdakis
- Bart Coppens 0001
- Alexios Voulimeneas
year: '2025'
doi: 10.1145/3721462.3770772
url: https://doi.org/10.1145/3721462.3770772
dblp_key: conf/middleware/MorenoMDKS0V25
venue_name: Middleware
pages: 241-255
- title: 'svc-hook: hooking system calls on ARM64 by binary rewriting'
authors:
- Akira Moroo
- Hajime Tazaki
- Kenichi Yasukata
year: '2025'
doi: 10.1145/3721462.3770771
url: https://doi.org/10.1145/3721462.3770771
dblp_key: conf/middleware/MorooTY25
venue_name: Middleware
pages: 195-201
- title: 'IM-PIR: In-Memory Private Information Retrieval'
authors:
- Mpoki Mwaisela
- Peterson Yuhala
- Pascal Felber
- Valerio Schiavoni
year: '2025'
doi: 10.1145/3721462.3770764
url: https://doi.org/10.1145/3721462.3770764
dblp_key: conf/middleware/MwaiselaYFS25
venue_name: Middleware
pages: 16-30
- title: 'Tiaccoon: Unified Access Control with Multiple Transports in Container Networks'
authors:
- Hiroya Onoe
- Daisuke Kotani
- Yasuo Okabe
year: '2025'
doi: 10.1145/3721462.3770783
url: https://doi.org/10.1145/3721462.3770783
dblp_key: conf/middleware/OnoeKO25
venue_name: Middleware
pages: 441-454
- title: 'FaaSImage: An Efficient Image Manager for FaaS'
authors:
- Abhisek Panda
- Smruti R. Sarangi
year: '2025'
doi: 10.1145/3721462.3730951
url: https://doi.org/10.1145/3721462.3730951
dblp_key: conf/middleware/PandaS25
venue_name: Middleware
pages: 153-166
- title: 'FDPVirt+: Reclaim Group Enabled NVMe FDP Emulation'
authors:
- Joonyeop Park
- Hyeonsang Eom
year: '2025'
doi: 10.1145/3721464.3777424
url: https://doi.org/10.1145/3721464.3777424
dblp_key: conf/middleware/ParkE25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 1-2
- title: 'PANDAS: Peer-to-peer, Adaptive Networking Allowing Data Availability Sampling
within Ethereum Consensus Timebounds'
authors:
- Matthieu Pigaglio
- Onur Ascigil
- Michal Król
- Felix Lange
- Kaleem Peeroo
- Sergi Rene
- Ramin Sadre
- Vladimir Stankovic 0002
- Etienne Rivière
year: '2025'
doi: 10.1145/3721462.3770769
url: https://doi.org/10.1145/3721462.3770769
dblp_key: conf/middleware/PigaglioAKLPRS025
venue_name: Middleware
pages: 167-179
- title: 'MVTEE: Multi-Variant Trusted Execution for Secure Model Inference'
authors:
- Kailun Qin
- Dawu Gu
year: '2025'
doi: 10.1145/3721462.3730956
url: https://doi.org/10.1145/3721462.3730956
dblp_key: conf/middleware/QinG25
venue_name: Middleware
pages: 298-313
- title: 'UnifyFL: Enabling Decentralized Cross-Silo Federated Learning'
authors:
- Sarang S
- Druva Dhakshinamoorthy
- Aditya Shiva Sharma
- Yuvraj Singh Bhadauria
- Siddharth Chaitra Vivek
- Arihant Bansal
- Arnab K. Paul
year: '2025'
doi: 10.1145/3721462.3730955
url: https://doi.org/10.1145/3721462.3730955
dblp_key: conf/middleware/SDSBVBP25
venue_name: Middleware
pages: 285-297
- title: Byzantine-Resilient Federated Computation of Differentially Private Summary
Statistics
authors:
- Giulio Segalini
- Maria Fernandes
- Jérémie Decouchant
year: '2025'
doi: 10.1145/3721462.3770766
url: https://doi.org/10.1145/3721462.3770766
dblp_key: conf/middleware/SegaliniFD25
venue_name: Middleware
pages: 72-85
- title: Computationally Efficient Federated Unlearning
authors:
- Neil Sharma
year: '2025'
doi: 10.1145/3721464.3777434
url: https://doi.org/10.1145/3721464.3777434
dblp_key: conf/middleware/Sharma25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 35-36
- title: 'xMem: A CPU-Based Approach for Accurate Estimation of GPU Memory in Deep
Learning Training Workloads'
authors:
- Jiabo Shi
- Dimitrios Pezaros
- Yehia Elkhatib
year: '2025'
doi: 10.1145/3721462.3770773
url: https://doi.org/10.1145/3721462.3770773
dblp_key: conf/middleware/ShiPE25
venue_name: Middleware
pages: 256-269
- title: 'FlexClone: Efficient, Flexible and Pluggable File Cloning Support for Filesystems'
authors:
- Rohit Singh
- Debadatta Mishra
year: '2025'
doi: 10.1145/3721462.3770779
url: https://doi.org/10.1145/3721462.3770779
dblp_key: conf/middleware/SinghM25
venue_name: Middleware
pages: 383-397
- title: 'PAMO: Pattern Matching Offload for Intrusion Detection Systems'
authors:
- Lukas Sismis
- Colin Evrard
- Etienne Rivière
- Tom Barbette
year: '2025'
doi: 10.1145/3721462.3770768
url: https://doi.org/10.1145/3721462.3770768
dblp_key: conf/middleware/SismisERB25
venue_name: Middleware
pages: 140-152
- title: 'HARP: Energy-Aware and Adaptive Management of Heterogeneous Processors'
authors:
- Till Smejkal
- Robert Khasanov
- Jerónimo Castrillon
- Hermann Härtig
year: '2025'
doi: 10.1145/3721462.3770774
url: https://doi.org/10.1145/3721462.3770774
dblp_key: conf/middleware/SmejkalKCH25
venue_name: Middleware
pages: 270-284
- title: 'Samurai: Slash Your Decentralized Storage'
authors:
- Shistata Subedi
year: '2025'
doi: 10.1145/3721464.3777435
url: https://doi.org/10.1145/3721464.3777435
dblp_key: conf/middleware/Subedi25
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: 37-38
- title: Exposing the Vulnerability of Decentralized Learning to Membership Inference
Attacks Through the Lens of Graph Mixing
authors:
- Ousmane Touat
- Jezekael Brunon
- Yacine Belal
- Julien Nicolas
- César Sabater
- Mohamed Maouche
- Sonia Ben Mokhtar
year: '2025'
doi: 10.1145/3721462.3770770
url: https://doi.org/10.1145/3721462.3770770
dblp_key: conf/middleware/TouatBBNSMM25
venue_name: Middleware
pages: 180-194
- title: 'WasmEye: Language- and Platform-independent Anomaly Detection for WebAssembly'
authors:
- Arne Vogel
- Timothee Glörfeld
- Alexander Szekely-Schenker
- Thomas Trenner
- Rene Ermler
- Rüdiger Kapitza
year: '2025'
doi: 10.1145/3721462.3730957
url: https://doi.org/10.1145/3721462.3730957
dblp_key: conf/middleware/VogelGSTEK25
venue_name: Middleware
pages: 314-325
- title: 'Mocha: Scalable and Compliant Function Scheduling for Federated Serverless
Computing'
authors:
- Yuqiu Zhang
- Hans-Arno Jacobsen
year: '2025'
doi: 10.1145/3721462.3770780
url: https://doi.org/10.1145/3721462.3770780
dblp_key: conf/middleware/ZhangJ25
venue_name: Middleware
pages: 398-412
- title: 'FreeRide: Harvesting Bubbles in Pipeline Parallelism'
authors:
- Jiashu Zhang
- Zihan Pan
- Molly Yiming Xu
- Khuzaima Daudjee
- Sihang Liu 0001
year: '2025'
doi: 10.1145/3721462.3730950
url: https://doi.org/10.1145/3721462.3730950
dblp_key: conf/middleware/ZhangPXD025
venue_name: Middleware
pages: 126-139
- title: 'MiAR-BFT: Efficient Leaderless Consensus Based on Multi-instance Asynchronous
Running for Blockchain'
authors:
- Zhenyu Zhang
- Xing Tong
- Zhao Zhang 0009
- Cheqing Jin
year: '2025'
doi: 10.1145/3721462.3730954
url: https://doi.org/10.1145/3721462.3730954
dblp_key: conf/middleware/ZhangTZJ25
venue_name: Middleware
pages: 228-240
- title: Proceedings of the 26th International Middleware Conference, MIDDLEWARE 2025,
Vanderbilt University, Nashville, TN, USA, December 15-19, 2025
authors:
- Mohammad Sadoghi
- Lydia Y. Chen
year: '2025'
doi: 10.1145/3721462
url: https://doi.org/10.1145/3721462
dblp_key: conf/middleware/2025
venue_name: Middleware
pages: null
- title: Proceedings of the 26th International Middleware Conference, Middleware Demos
Posters and Doctoral Symposium 2025, Nashville, TN, USA, December 15-19, 2025
authors: []
year: '2025'
doi: 10.1145/3721464
url: https://doi.org/10.1145/3721464
dblp_key: conf/middleware/2025p
venue_name: Middleware Demos/Posters/Doctoral Symposium
pages: null

View File

@@ -0,0 +1,83 @@
venue: Middleware
year: 2025
papers:
- title: 'Recipe: Hardware-Accelerated Replication Protocols: Rethinking Crash Fault
Tolerance Protocols for Untrusted Cloud Environments'
authors:
- Dimitra Giantsidi
- Emmanouil Giortamis
- Julian Pritzi
- Maurice Bailleu
- Manos Kapritsos
- Pramod Bhatotia
reason: "Redesigns crash fault-tolerance protocols using hardware acceleration (TEEs/SmartNICs) to deliver replication with strong guarantees in untrusted cloud environments."
- title: Efficient Performance Guarantees for Function-as-a-Service with Cloud Allocators
authors:
- Hai Duc Nguyen 0005
- Andrew A. Chien
reason: "Introduces cloud-allocator abstractions that provide formal performance guarantees for serverless functions, addressing the unpredictability of shared FaaS infrastructure."
- title: 'Capybara: an Edge-Friendly Distributed Object Store for Diverse Serverless
Functions'
authors:
- Xin Chen 0084
- Manoj Prabhakar Paidiparthy
- Chen Qian 0001
- Liting Hu
reason: "Proposes a distributed object store purpose-built for edge serverless workloads, enabling diverse function runtimes to share state efficiently at the edge."
- title: 'EdgeConnector: Enabling Seamless and Efficient Cross-Cluster Device Access
in Edge Environment'
authors:
- Yunna Cui
- Liwei Shen
- Bingkun Sun
- Wente Lu
- Haojie Zhang
- Xin Peng 0001
reason: "Presents a middleware layer that transparently bridges device access across Kubernetes clusters in heterogeneous edge deployments."
- title: 'FaaSImage: An Efficient Image Manager for FaaS'
authors:
- Abhisek Panda
- Smruti R. Sarangi
reason: "Tackles cold-start latency in production FaaS platforms by redesigning container image management with fine-grained layer sharing and prefetching."
- title: 'Roadrunner: Accelerating Data Delivery to WebAssembly-Based Serverless Functions'
authors:
- Cynthia Marcelino
- Thomas W. Pusztai
- Stefan Nastic
reason: "Designs a high-throughput data-plane runtime that removes I/O bottlenecks for Wasm serverless functions through zero-copy data paths."
- title: 'Mocha: Scalable and Compliant Function Scheduling for Federated Serverless
Computing'
authors:
- Yuqiu Zhang
- Hans-Arno Jacobsen
reason: "Introduces a scheduler for federated serverless environments that satisfies data-residency and compliance constraints while maintaining high resource utilization."
- title: A Hybrid Runtime for Function-as-a-Service at the Edge
authors:
- Adam Hall
- Umakishore Ramachandran
reason: "Combines container and unikernel execution models in a single FaaS runtime to balance isolation, startup latency, and resource efficiency at edge nodes."
- title: 'Tiaccoon: Unified Access Control with Multiple Transports in Container Networks'
authors:
- Hiroya Onoe
- Daisuke Kotani
- Yasuo Okabe
reason: "Provides a service-mesh-style unified access-control plane that works across heterogeneous transport protocols within container network environments."
- title: 'MiAR-BFT: Efficient Leaderless Consensus Based on Multi-instance Asynchronous
Running for Blockchain'
authors:
- Zhenyu Zhang
- Xing Tong
- Zhao Zhang 0009
- Cheqing Jin
reason: "Proposes a leaderless BFT consensus protocol that runs multiple instances concurrently to improve throughput and reduce latency in blockchain middleware."
- title: 'ER-π: Exhaustive Interleaving Replay for Testing Replicated Data Library
Integration'
authors:
- Provakar Mondal
- Eli Tilevich
reason: "Systematically explores all message interleavings when testing replicated data libraries, surfacing integration bugs that random testing misses in distributed coordination code."
- title: 'Adjusted Objects: An Efficient and Principled Approach to Scalable Programming'
authors:
- Boubacar Kane
- Pierre Sutra
reason: "Introduces adjusted objects as a programming abstraction that reconciles strong consistency with scalability, offering a practical alternative to CRDTs for distributed middleware."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,137 @@
venue: MobiSys
year: 2024
papers:
- title: 'WAIS: Leveraging WiFi for Resource-Efficient SLAM'
authors:
- Aditya Arun 0002
- William Hunter
- Roshan Sai Ayyalasomayajula
- Dinesh Bharadia
reason: "Demonstrates that commodity WiFi signals can replace LiDAR for simultaneous localization and mapping, dramatically cutting the resource cost of robot/AR navigation."
- title: 'UWB-Fi: Pushing Wi-Fi towards Ultra-wideband for Fine-Granularity Sensing'
authors:
- Xin Li 0070
- Hongbo Wang
- Zhe Chen 0015
- Zhiping Jiang
- Jun Luo 0001
reason: "Extends standard Wi-Fi to UWB-class sensing resolution without hardware changes, enabling centimeter-level gesture and motion detection on existing infrastructure."
- title: 'Radarize: Enhancing Radar SLAM with Generalizable Doppler-Based Odometry'
authors:
- Emerson Sie
- Xinyu Wu
- Heyu Guo
- Deepak Vasisht
reason: "Introduces a Doppler-derived odometry method that generalizes radar-based SLAM across environments and radar hardware without per-deployment retraining."
- title: 'ChirpTransformer: Versatile LoRa Encoding for Low-power Wide-area IoT'
authors:
- Chenning Li
- Yidong Ren
- Shuai Tong
- Shakhrul Iman Siam
- Mi Zhang 0002
- Jiliang Wang
- Yunhao Liu 0001
- Zhichao Cao 0001
reason: "Redesigns LoRa chirp encoding with a transformer-based scheme that simultaneously improves throughput, range, and coexistence for large-scale IoT deployments."
- title: 'Willow: Practical WiFi Backscatter Localization with Parallel Tags'
authors:
- Jinyan Jiang
- Jiliang Wang
- Yijie Chen
- Shuai Tong
- Pengjin Xie
- Yihao Liu
- Yunhao Liu 0001
reason: "Enables concurrent localization of multiple passive backscatter tags over commodity WiFi, making large-scale battery-free asset tracking practical."
- title: 'Pantheon: Preemptible Multi-DNN Inference on Mobile Edge GPUs'
authors:
- Lixiang Han
- Zimu Zhou
- Zhenjiang Li
reason: "Provides a preemptible scheduling runtime for concurrent DNN workloads on edge GPUs, achieving low-latency inference without sacrificing throughput under mixed real-time demands."
- title: 'ARISE: High-Capacity AR Offloading Inference Serving via Proactive Scheduling'
authors:
- Z. Jonny Kong
- Qiang Xu 0006
- Y. Charlie Hu
reason: "Proactively schedules AR inference offloading by predicting gaze and scene dynamics, significantly increasing server capacity while meeting strict latency budgets."
- title: 'CACTUS: Dynamically Switchable Context-aware micro-Classifiers for Efficient IoT Inference'
authors:
- Mohammad Mehdi Rastikerdar
- Jin Huang
- Shiwei Fang
- Hui Guan 0001
- Deepak Ganesan
reason: "Deploys a family of tiny context-aware classifiers on microcontrollers that switch at runtime to match workload context, cutting energy by orders of magnitude versus monolithic models."
- title: Empowering In-Browser Deep Learning Inference on Edge Through Just-In-Time Kernel Optimization
authors:
- Fucheng Jia
- Shiqi Jiang 0002
- Ting Cao 0003
- Wei Cui
- Tianrui Xia
- Xu Cao
- Yuanchun Li 0003
- Qipeng Wang 0001
- Deyu Zhang
- Ju Ren 0001
- Yunxin Liu 0001
- Lili Qiu
- Mao Yang 0004
reason: "Uses JIT kernel specialization to close the performance gap between browser-based and native DNN inference on edge devices, enabling high-throughput on-device AI in web apps."
- title: 'FedConv: A Learning-on-Model Paradigm for Heterogeneous Federated Clients'
authors:
- Leming Shen
- Qiang Yang 0018
- Kaiyan Cui
- Yuanqing Zheng
- Xiao-Yong Wei
- Jianwei Liu 0008
- Jinsong Han
reason: "Proposes learning directly over model parameters rather than data, allowing federated learning to work across radically heterogeneous IoT devices without sharing raw data or requiring uniform architectures."
- title: 'SoilCares: Towards Low-cost Soil Macronutrients and Moisture Monitoring Using RF-VNIR Sensing'
authors:
- Juexing Wang
- Yuda Feng
- Gouree Kumbhar
- Guangjing Wang 0001
- Qiben Yan
- Qingxu Jin
- Robert C. Ferrier
- Jie Xiong 0001
- Tianxing Li 0001
reason: "Combines RF and near-infrared sensing in a low-cost handheld device to measure soil nutrients and moisture, demonstrating real agricultural field deployments."
- title: 'MobiAir: Unleashing Sensor Mobility for City-scale and Fine-grained Air-Quality Monitoring with AirBERT'
authors:
- Yuxuan Liu 0010
- Haoyang Wang 0012
- Fanhang Man
- Jingao Xu
- Fan Dang 0001
- Yunhao Liu 0001
- Xiao-Ping Zhang 0002
- Xinlei Chen
reason: "Leverages mobile sensors on vehicles and pedestrians with a BERT-style spatio-temporal model to achieve city-scale, fine-grained air quality maps at a fraction of the cost of static sensor networks."
- title: 'Joey: Supporting Kangaroo Mother Care with Computational Fabrics'
authors:
- Qijia Shao
- Jiting Liu
- Emily Bejerano
- Ho-Man Colman Leung
- Jingping Nie
- Xiaofan Jiang 0001
- Xia Zhou
reason: "Embeds soft physiological sensors directly into a wearable fabric wrap to monitor premature infants during skin-to-skin care, demonstrating a compelling real-world clinical deployment."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,65 @@
venue: MobiSys
year: 2025
date: "2025-06-23"
tags: [mobile-computing, edge-computing, networking]
selected:
- dblp_key: "conf/mobisys/MaCC025"
title: "Hopter: a Safe, Robust, and Responsive Embedded Operating System"
tldr: "Hopter is a new embedded OS that enforces memory safety and real-time responsiveness through a Rust-based task model with cooperative and preemptive scheduling co-designed from the ground up."
why_notable: "Building a ground-up safe embedded OS is a long-standing challenge; Hopter addresses it without sacrificing the determinism that IoT and robotics workloads demand, offering a credible alternative to unsafe C-based RTOSes."
- dblp_key: "conf/mobisys/WangXL25"
title: "WhisperFlow: speech foundation models in real time"
tldr: "WhisperFlow pipelines and partially overlaps Whisper's encode-decode stages so that large speech foundation models can transcribe audio with latency low enough for interactive mobile use."
why_notable: "Running large encoder-decoder speech models in real time on mobile hardware was previously impractical; the paper shows that careful pipeline scheduling—not quantization alone—can close this gap, with implications for on-device voice assistants."
- dblp_key: "conf/mobisys/JungLKK0C25"
title: "ARIA: Optimizing Vision Foundation Model Inference on Heterogeneous Mobile Processors for Augmented Reality"
tldr: "ARIA partitions and schedules vision foundation model layers across CPU, GPU, and NPU on a mobile SoC to meet the strict latency budget of augmented-reality pipelines."
why_notable: "Foundation models are typically too large for AR frame rates; ARIA's heterogeneous mapping strategy achieves real-time throughput without dedicated server offload, making high-quality AR semantics viable on commodity handsets."
- dblp_key: "conf/mobisys/ChenFZZHL25"
title: "You Only Render Once: Enhancing Energy and Computation Efficiency of Mobile Virtual Reality"
tldr: "YORO eliminates redundant per-eye rendering in mobile VR by synthesizing one eye's view from the other using a lightweight neural warp, cutting GPU work nearly in half."
why_notable: "Stereo rendering is the dominant energy cost in standalone VR headsets; halving it via a neural single-render approach is a surprising result that could significantly extend battery life on devices like Quest."
- dblp_key: "conf/mobisys/WenTP0LCZLLZL25"
title: "AutoDroid-V2: Boosting SLM-based GUI Agents via Code Generation"
tldr: "AutoDroid-V2 improves on-device GUI automation agents by having a small language model generate executable action code rather than selecting from a fixed action vocabulary, dramatically improving task success rates."
why_notable: "Shifting from action classification to code generation is a paradigm change for mobile agents; the paper demonstrates that even small, phone-resident SLMs can outperform larger cloud models on standard Android benchmarks when given the right output format."
- dblp_key: "conf/mobisys/ShenHWZSY025"
title: "EdgeLoRA: An Efficient Multi-Tenant LLM Serving System on Edge Devices"
tldr: "EdgeLoRA multiplexes many LoRA-adapted LLM variants on a single edge GPU by sharing the frozen base model weights and swapping only the low-rank adapters, enabling multi-tenant LLM inference at the edge."
why_notable: "Multi-tenant serving of personalized LLMs on a single edge node is an open systems problem; EdgeLoRA's adapter-swap architecture achieves near-dedicated throughput per tenant while keeping memory footprint proportional to the number of adapters rather than full model copies."
- dblp_key: "conf/mobisys/WangYYG25"
title: "Never Start from Scratch: Expediting On-Device LLM Personalization via Explainable Model Selection"
tldr: "Rather than fine-tuning from a generic base, this system selects the best pre-existing task-specific model checkpoint as the personalization starting point, guided by an interpretable feature-matching score."
why_notable: "The finding that checkpoint selection dominates fine-tuning cost savings—and that an explainable selector can match exhaustive search—challenges the assumption that on-device personalization must always begin from a single canonical base model."
- dblp_key: "conf/mobisys/DoddsBZA25"
title: "Non-Line-of-Sight 3D Object Reconstruction via mmWave Surface Normal Estimation"
tldr: "By estimating surface normals from mmWave reflections, this system reconstructs the 3D shape of objects hidden around corners without requiring a line-of-sight path."
why_notable: "NLOS 3D reconstruction with commodity mmWave hardware is a significant sensing advance; using surface normals rather than time-of-flight alone yields object reconstructions detailed enough to identify object categories, with clear implications for autonomous driving and search-and-rescue."
- dblp_key: "conf/mobisys/QianP25"
title: "Toward Spoofing-Resilient and Communication-Integrated MmWave Radar Sensing"
tldr: "This work integrates communication waveforms into mmWave radar so that sensing and data transmission share the same spectrum, while a spoofing-resilience mechanism prevents adversarial injection of false radar echoes."
why_notable: "Combining ISAC (integrated sensing and communications) with active spoofing defense in a single mmWave system addresses two open problems at once; the result is particularly relevant as mmWave bands are slated for both 5G and automotive radar use."
- dblp_key: "conf/mobisys/YuZXZW25"
title: "Are LoRa Logical Channels Really Orthogonal? Practically Orthogonalizing Massive Logical Channels"
tldr: "The paper shows that LoRa's supposedly orthogonal spreading-factor channels have measurable inter-channel interference at scale, then proposes a software-only scheduler that restores near-perfect orthogonality for dense deployments."
why_notable: "The result that LoRa orthogonality breaks down in realistic dense networks—and that a pure software fix suffices—is a surprising finding that will directly affect how city-scale IoT networks are planned and managed."
- dblp_key: "conf/mobisys/YiLJSK025"
title: "Towards End-to-End Latency Guarantee in MEC Live Video Analytics with App-RAN Mutual Awareness"
tldr: "By exposing RAN scheduling state to the MEC video analytics application—and letting the app's feedback influence RAN scheduling—this system achieves end-to-end latency guarantees that neither layer can provide alone."
why_notable: "Cross-layer co-design between the RAN and MEC application is rarely demonstrated in a working system; the paper shows that even coarse-grained mutual awareness cuts tail latency by over 50% compared to independent operation."
- dblp_key: "conf/mobisys/PatabandigeCYDV25"
title: "Unraveling the Missing Link in Low-power Communication: An Autodyning Receiver Architecture that Achieves a Long Range"
tldr: "An autodyning receiver design reuses the transmit oscillator for self-mixing, eliminating a separate LO and achieving orders-of-magnitude better sensitivity than prior backscatter receivers without added hardware cost."
why_notable: "Long-range backscatter has been a persistent gap between battery-free IoT and practical deployment; this architecture achieves kilometer-scale range on microwatts of harvested energy, a result that could unlock new classes of batteryless sensors."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,172 @@
venue: NSDI
year: 2024
papers:
- title: 'MegaScale: Scaling Large Language Model Training to More Than 10, 000 GPUs'
authors:
- Ziheng Jiang
- Haibin Lin
- Yinmin Zhong
- Qi Huang
- Yangrui Chen
- Zhi Zhang
- Yanghua Peng
- Xiang Li 0067
- Cong Xie
- Shibiao Nong
- Yulu Jia
- Sun He
- Hongmin Chen
- Zhihao Bai
- Qi Hou
- Shipeng Yan
- Ding Zhou
- Yiyao Sheng
- Zhuo Jiang
- Haohan Xu
- Haoran Wei
- Zhang Zhang 0003
- Pengfei Nie
- Leqi Zou
- Sida Zhao
- Liang Xiang
- Zherui Liu
- Zhe Li
- Xiaoying Jia 0001
- Jianxi Ye
- Xin Jin 0008
- Xin Liu 0086
reason: "ByteDance's full production account of training LLMs at 10,000+ GPUs, with novel co-design of the network stack, fault tolerance, and collective communication to sustain near-linear scaling."
- title: 'Harmony: A Congestion-free Datacenter Architecture'
authors:
- Saksham Agarwal
- Qizhe Cai
- Rachit Agarwal 0001
- David B. Shmoys
- Amin Vahdat
reason: "Proposes rethinking datacenter fabrics to eliminate congestion by construction rather than managing it reactively, achieving line-rate throughput without per-packet feedback from Cornell and Google."
- title: 'DINT: Fast In-Kernel Distributed Transactions with eBPF'
authors:
- Yang Zhou 0008
- Xingyu Xiang
- Matthew Kiley
- Sowmya Dharanipragada
- Minlan Yu
reason: "Demonstrates that eBPF programs executing entirely inside the kernel can enforce linearizable, ACID-compliant distributed transactions at dramatically lower latency than user-space approaches."
- title: Making Kernel Bypass Practical for the Cloud with Junction
authors:
- Joshua Fried
- Gohar Irfan Chaudhry
- Enrique Saurez
- Esha Choukse
- Íñigo Goiri
- Sameh Elnikety
- Rodrigo Fonseca
- Adam Belay
reason: "Junction (MIT + Microsoft) is the first system to bring full kernel-bypass networking to multi-tenant cloud VMs without requiring application modifications or sacrificing isolation."
- title: 'SIEVE is Simpler than LRU: an Efficient Turn-Key Eviction Algorithm for Web Caches'
authors:
- Yazhuo Zhang
- Juncheng Yang
- Yao Yue
- Ymir Vigfusson
- K. V. Rashmi
reason: "Surprising finding that a single-queue eviction policy requiring almost no state changes outperforms LRU and all modern approximations on production web-cache workloads."
- title: A large-scale deployment of DCTCP
authors:
- Abhishek Dhamija
- Balasubramanian Madhavan
- Hechao Li
- Jie Meng
- Shrikrishna Khare
- Madhavi Rao
- Lawrence Brakmo
- Neil Spring
- Prashanth Kannan
- Srikanth Sundaresan
- Soudeh Ghorbani
reason: "A rare, candid production report from Meta on deploying DCTCP at hyperscale, surfacing unexpected interactions with heterogeneous hardware, cross-traffic, and operational constraints."
- title: 'Brain-on-Switch: Towards Advanced Intelligent Network Data Plane via NN-Driven Traffic Analysis at Line-Speed'
authors:
- Jinzhu Yan
- Haotian Xu
- Zhuotao Liu
- Qi Li 0002
- Ke Xu 0002
- Mingwei Xu 0001
- Jianping Wu
reason: "Executes neural-network inference for traffic classification directly in the programmable switch data plane at line rate, eliminating the round-trip to a CPU-based classifier."
- title: 'Horus: Granular In-Network Task Scheduler for Cloud Datacenters'
authors:
- Parham Yassini
- Khaled Diab 0001
- Saeed Mahloujifar
- Mohamed Hefeeda
reason: "Offloads microsecond-granularity task scheduling decisions into programmable switches, reducing load-balancing latency by orders of magnitude compared to software schedulers."
- title: 'CAPA: An Architecture For Operating Cluster Networks With High Availability'
authors:
- Bingzhe Liu
- Colin Scott
- Mukarram Tariq
- Andrew D. Ferguson
- Phillipa Gill
- Richard Alimi
- Omid Alipourfard
- Deepak Arulkannan
- Virginia Beauregard
- Patrick Conner
- Philip Brighten Godfrey
- Xander Lin
- Joon Ong
- Mayur Patel
- Amr Sabaa
- Arjun Singh
- Alex Smirnov
- Manish Verma
- Prerepa V. Viswanadham
- Amin Vahdat
reason: "Google's production architecture for maintaining five-nines availability in Jupiter-scale cluster networks, detailing how control-plane redundancy and fast failover are achieved in practice."
- title: Revisiting Congestion Control for Lossless Ethernet
authors:
- Yiran Zhang
- Qingkai Meng 0001
- Chaolei Hu
- Fengyuan Ren
reason: "Identifies fundamental flaws in PFC-based lossless Ethernet that cause cascading head-of-line blocking and proposes a redesigned congestion control that avoids them."
- title: 'Sirius: Composing Network Function Chains into P4-Capable Edge Gateways'
authors:
- Jiaqi Gao
- Jiamin Cao
- Yifan Li
- Mengqi Liu 0001
- Ming Tang
- Dennis Cai
- Ennan Zhai
reason: "Alibaba's production system for composing arbitrary NF chains into P4-programmed edge gateways, replacing a fleet of dedicated middleboxes and cutting per-packet processing cost significantly."
- title: 'CASSINI: Network-Aware Job Scheduling in Machine Learning Clusters'
authors:
- Sudarsanan Rajasekaran
- Manya Ghobadi
- Aditya Akella
reason: "Shows that ignoring network topology when scheduling ML training jobs causes severe collective-communication contention, and that topology-aware co-scheduling yields substantial throughput gains."
- title: 'Cloudcast: High-Throughput, Cost-Aware Overlay Multicast in the Cloud'
authors:
- Sarah Wooders
- Shu Liu
- Paras Jain 0001
- Xiangxi Mo
- Joseph E. Gonzalez
- Vincent Liu 0001
- Ion Stoica
reason: "Berkeley/Penn system that builds overlay multicast trees across cloud regions optimized for egress cost, enabling high-throughput data dissemination at a fraction of unicast cloud egress fees."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,70 @@
venue: NSDI
year: 2025
date: "2025-04-28"
tags: [networking, distributed-systems, cloud, programmable-data-planes, network-verification, datacenter, transport, ml-systems, 5g]
selected:
- dblp_key: "conf/nsdi/Du0ZLHGWT025"
title: "PRED: Performance-oriented Random Early Detection for Consistently Stable Performance in Datacenters"
tldr: "PRED redesigns AQM by making drop probability a direct function of per-flow performance targets rather than queue length, eliminating the instability of classic RED in modern datacenter workloads."
why_notable: "RED has been a cornerstone of congestion control for decades; PRED's performance-centric reformulation challenges a long-held design axiom and demonstrates significantly lower tail latency at scale. It opens the door to intent-driven AQM as a first-class primitive in datacenter switches."
- dblp_key: "conf/nsdi/XingGLWQDKL25"
title: "Rajomon: Decentralized and Coordinated Overload Control for Latency-Sensitive Microservices"
tldr: "Rajomon introduces a token-based, decentralized overload control mechanism that coordinates admission across microservice call graphs without a central bottleneck."
why_notable: "Microservice overload propagation is a persistent pain point in production clouds; Rajomon's approach of spreading load-shedding decisions across the call graph while retaining global coherence is a practical and principled contribution. The system is evaluated on realistic cloud benchmarks and shows clear SLO improvement over prior centralized and uncoordinated schemes."
- dblp_key: "conf/nsdi/LiuXZDLLH0K0M25"
title: "Unlocking ECMP Programmability for Precise Traffic Control"
tldr: "This work exposes fine-grained ECMP programming interfaces that allow operators to steer individual flows through specific paths in multipath datacenter fabrics with near-zero overhead."
why_notable: "ECMP's coarse hashing has been a limiting factor in datacenter traffic engineering for years; this paper shows that commodity switch primitives can be composed to achieve precise per-flow placement, delivering measurable improvements in load balance without topology changes."
- dblp_key: "conf/nsdi/ChenMLLRYZ25"
title: "eTran: Extensible Kernel Transport with eBPF"
tldr: "eTran uses eBPF to let applications plug in custom transport logic—including RDMA-like zero-copy paths—directly into the Linux kernel data path without modifying kernel source."
why_notable: "The ability to safely extend kernel networking with eBPF has been widely anticipated; eTran demonstrates that full transport protocols (not just classifiers) can be realised this way, achieving performance competitive with kernel-bypass while retaining OS isolation and deployability."
- dblp_key: "conf/nsdi/ZhaoM0K25"
title: "White-Boxing RDMA with Packet-Granular Software Control"
tldr: "This paper decomposes RDMA semantics and re-implements them in software at packet granularity, exposing hooks that allow transport policy (retransmission, congestion, multipath) to be modified without hardware changes."
why_notable: "RDMA's black-box nature has long frustrated datacenter operators trying to deploy custom congestion control or network telemetry; white-boxing RDMA at packet granularity is a principled answer that simultaneously improves debuggability and extensibility, with demonstrated line-rate performance."
- dblp_key: "conf/nsdi/LiZZY25"
title: "NDD: A Decision Diagram for Network Verification"
tldr: "NDD is a new symbolic data structure that compactly represents the forwarding behavior of large networks, enabling network verification queries orders of magnitude faster than BDD-based predecessors."
why_notable: "Network verification tools like Batfish and ARC rely on set representations whose size can explode on real networks; NDD's topology-aware decomposition dramatically reduces verification time for common queries (reachability, loop detection) and is likely to be adopted as a backend in production verification pipelines."
- dblp_key: "conf/nsdi/WuFHLLXZC25"
title: "VEP: A Two-stage Verification Toolchain for Full eBPF Programmability"
tldr: "VEP combines abstract interpretation with deductive verification to prove safety properties of eBPF programs that the Linux kernel verifier rejects, enabling a much wider class of programs to run safely in the kernel."
why_notable: "The Linux eBPF verifier's conservatism blocks many useful programs; VEP's two-stage approach (lightweight in-kernel check plus offline proof) expands the programmability frontier without weakening safety guarantees, directly affecting every operator who writes eBPF for networking or observability."
- dblp_key: "conf/nsdi/JiVVSA25"
title: "MTP: Transport for In-Network Computing"
tldr: "MTP is a transport protocol co-designed with programmable switches that allows in-network compute operations (aggregation, filtering) to be expressed as first-class transport primitives with reliability and flow-control guarantees."
why_notable: "Existing transports treat the network as a dumb pipe and retrofit in-network compute as an afterthought; MTP shows that rethinking transport abstractions around programmable hardware can yield substantial throughput gains for distributed ML and key-value workloads."
- dblp_key: "conf/nsdi/XuMG0MZSAN25"
title: "State-Compute Replication: Parallelizing High-Speed Stateful Packet Processing"
tldr: "This paper introduces a replication model for stateful packet processing that partitions state across multiple pipeline replicas and reconciles updates at line rate, breaking the single-pipeline bottleneck of P4 programs."
why_notable: "Stateful P4 programs that require per-flow counters or heavy-hitter detection are bottlenecked by single-instance state; the state-compute replication model is a general technique applicable across telemetry, load balancing, and security use cases, with a prototype running at 100 Gbps."
- dblp_key: "conf/nsdi/ZhaoPCWFBKK25"
title: "Efficient Direct-Connect Topologies for Collective Communications"
tldr: "This paper derives a family of direct-connect network topologies mathematically optimized for the all-reduce and all-to-all collectives used in large-scale ML training, achieving better bandwidth and lower diameter than fat-tree alternatives at the same port count."
why_notable: "As AI training clusters scale to thousands of GPUs, interconnect topology becomes a first-order performance determinant; the paper's analytical framework for topology synthesis fills a long-standing gap between graph theory and practical cluster networking, and the proposed topologies outperform fat-trees on real collective benchmarks."
- dblp_key: "conf/nsdi/WangLXL0CZZZZLZ25"
title: "SimAI: Unifying Architecture Design and Performance Tuning for Large-Scale Large Language Model Training with Scalability and Precision"
tldr: "SimAI is a high-fidelity simulator that jointly models compute, network, and storage interactions in LLM training clusters, enabling architects to evaluate topology and parallelism strategy choices without running full cluster experiments."
why_notable: "Designing training infrastructure for frontier LLMs is prohibitively expensive to explore empirically; SimAI's validated accuracy against production Alibaba clusters makes it a practical tool for the community and provides rare quantitative insight into how network architecture choices affect end-to-end training throughput."
- dblp_key: "conf/nsdi/DengSJZZ0LSZLLW25"
title: "Minder: Faulty Machine Detection for Large-scale Distributed Model Training"
tldr: "Minder continuously monitors collective-communication timing patterns during LLM training to pinpoint faulty nodes—including subtle slow or flapping hardware—without requiring dedicated diagnostic jobs."
why_notable: "GPU cluster faults that cause training slowdowns rather than outright crashes are notoriously hard to attribute; Minder's passive monitoring approach catches a wide class of hardware anomalies (including network stragglers) with sub-minute detection latency, and its deployment at scale in Alibaba's training infrastructure gives the results strong operational credibility."
- dblp_key: "conf/nsdi/HoganWQABSB25"
title: "Efficient Multi-WAN Transport for 5G with OTTER"
tldr: "OTTER is a multi-path transport system for 5G user-plane traffic that dynamically bonds heterogeneous WAN links (e.g., terrestrial + satellite) while hiding link asymmetry and jitter from applications."
why_notable: "5G deployments increasingly rely on diverse backhaul paths with wildly different characteristics; OTTER's scheduler, validated on a Microsoft production 5G deployment, demonstrates that significant throughput and reliability gains are achievable through principled multi-WAN design, informing both operator practice and future transport standards."

View File

@@ -0,0 +1,830 @@
venue: OSDI
year: 2025
source: dblp
count: 54
papers:
- title: 'Tigon: A Distributed Database for a CXL Pod'
authors:
- Yibo Huang 0006
- Haowei Chen
- Newton Ni
- Yan Sun
- Vijay Chidambaram
- Dixin Tang
- Emmett Witchel
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/huang-yibo
dblp_key: conf/osdi/0006CNSCTW25
venue_name: OSDI
pages: 109-128
- title: 'Tintin: A Unified Hardware Performance Profiling Infrastructure to Uncover
and Manage Uncertainty'
authors:
- Ao Li 0006
- Marion Sudvarg
- Zihan Li
- Sanjoy K. Baruah
- Chris Gill 0001
- Ning Zhang 0017
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/li
dblp_key: conf/osdi/0006SLB0025
venue_name: OSDI
pages: 575-593
- title: 'WLB-LLM: Workload-Balanced 4D Parallelism for Large Language Model Training'
authors:
- Zheng Wang 0075
- Anna Cai
- Xinfeng Xie
- Zaifeng Pan
- Yue Guan 0003
- Weiwei Chu
- Jie Wang 0022
- Shikai Li
- Jianyu Huang
- Chris Cai
- Yuchen Hao
- Yufei Ding 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wang-zheng
dblp_key: conf/osdi/0075CXPGC0LHCH025
venue_name: OSDI
pages: 785-801
- title: 'Paralegal: Practical Static Analysis for Privacy Bugs'
authors:
- Justus Adam
- Carolyn Zech
- Livia Zhu
- Sreshtaa Rajesh
- Nathan Harbison
- Mithi Jethwa
- Will Crichton
- Shriram Krishnamurthi
- Malte Schwarzkopf
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/adam
dblp_key: conf/osdi/AdamZZRHJCKS25
venue_name: OSDI
pages: 957-978
- title: 'Okapi: Decoupling Data Striping and Redundancy Grouping in Cluster File
Systems'
authors:
- Sanjith Athlur
- Timothy Kim
- Saurabh Kadekodi
- Francisco Maturana
- Xavier Ramos
- Arif Merchant
- K. V. Rashmi
- Gregory R. Ganger
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/athlur
dblp_key: conf/osdi/AthlurKKMRMRG25
venue_name: OSDI
pages: 897-914
- title: Low End-to-End Latency atop a Speculative Shared Log with Fix-Ante Ordering
authors:
- Shreesha G. Bhat
- Tony Hong
- Xuhao Luo
- Jiyu Hu
- Aishwarya Ganesan
- Ramnatthan Alagappan
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/bhat
dblp_key: conf/osdi/BhatHLHGA25
venue_name: OSDI
pages: 465-481
- title: 'EMT: An OS Framework for New Memory Translation Architectures'
authors:
- Siyuan Chai 0001
- Jiyuan Zhang 0003
- Jongyul Kim 0001
- Alan Wang
- Fan Chung
- Jovan Stojkovic
- Weiwei Jia 0001
- Dimitrios Skarlatos 0002
- Josep Torrellas
- Tianyin Xu
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/chai-siyuan
dblp_key: conf/osdi/Chai00WCS00TX25
venue_name: OSDI
pages: 711-729
- title: 'Fork in the Road: Reflections and Optimizations for Cold Start Latency in
Production Serverless Systems'
authors:
- Xiaohu Chai
- Tianyu Zhou
- Keyang Hu
- Jianfeng Tan
- Tiwei Bie
- Anqi Shen
- Dawei Shen
- Qi Xing
- Shun Song
- Tongkai Yang
- Le Gao
- Feng Yu
- Zhengyu He
- Dong Du 0003
- Yubin Xia
- Kang Chen
- Yu Chen 0004
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/chai-xiaohu
dblp_key: conf/osdi/ChaiZHTBSSXSYGY25
venue_name: OSDI
pages: 199-218
- title: 'PipeThreader: Software-Defined Pipelining for Efficient DNN Execution'
authors:
- Yu Cheng
- Lei Wang 0222
- Yining Shi 0001
- Yuqing Xia
- Lingxiao Ma
- Jilong Xue
- Yang Wang 0053
- Zhiwen Mo
- Feiyang Chen
- Fan Yang 0024
- Mao Yang 0004
- Zhi Yang 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/cheng
dblp_key: conf/osdi/ChengW0XMXWMC0025
venue_name: OSDI
pages: 767-783
- title: Decentralized, Epoch-based F2FS Journaling with Fine-grained Crash Recovery
authors:
- Yaotian Cui
- Zhiqi Wang
- Renhai Chen
- Zili Shao
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/cui
dblp_key: conf/osdi/CuiWCS25
venue_name: OSDI
pages: 879-895
- title: 'Kamino: Efficient VM Allocation at Scale with Latency-Driven Cache-Aware
Scheduling'
authors:
- David Domingo
- Hugo Barbalho
- Marco Molinaro 0004
- Kuan Liu
- Abhisek Pan
- David Dion
- Thomas Moscibroda
- Sudarsun Kannan
- Ishai Menache
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/domingo
dblp_key: conf/osdi/DomingoB0LPDMKM25
venue_name: OSDI
pages: 519-535
- title: 'QiMeng-Xpiler: Transcompiling Tensor Programs for Deep Learning Systems
with a Neural-Symbolic Approach'
authors:
- Shouyang Dong
- Jun Bi
- Di Huang
- Jiaming Guo
- Jianxing Xu
- Ruibai Xu
- Xinkai Song
- Yifan Hao 0001
- Ling Li 0001
- Xuehai Zhou
- Tianshi Chen 0002
- Qi Guo 0001
- Yunji Chen
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/dong
dblp_key: conf/osdi/DongBHGXXS00Z0025
venue_name: OSDI
pages: 239-255
- title: 'Picsou: Enabling Replicated State Machines to Communicate Efficiently'
authors:
- Reginald Frank
- Micah Murray
- Chawinphat Tankuranand
- Junseo Yoo
- Ethan Xu
- Natacha Crooks
- Suyash Gupta 0001
- Manos Kapritsos
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/frank
dblp_key: conf/osdi/FrankMTYXC0K25
venue_name: OSDI
pages: 39-56
- title: Stripeless Data Placement for Erasure-Coded In-Memory Storage
authors:
- Jian Gao
- Jiwu Shu
- Bin Yan
- Yuhao Zhang 0006
- Keji Huang
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/gao
dblp_key: conf/osdi/GaoSY0H25
venue_name: OSDI
pages: 821-838
- title: 'QOS: Quantum Operating System'
authors:
- Emmanouil Giortamis
- Francisco Romão
- Nathaniel Tornow
- Pramod Bhatotia
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/giortamis
dblp_key: conf/osdi/GiortamisRTB25
venue_name: OSDI
pages: 429-447
- title: 'KPerfIR: Towards a Open and Compiler-centric Ecosystem for GPU Kernel Performance
Tooling on Modern AI Workloads'
authors:
- Yue Guan 0003
- Yuanwei Fang
- Keren Zhou 0001
- Corbin Robeck
- Manman Ren
- Zhongkai Yu
- Yufei Ding 0001
- Adnan Aziz
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/guan
dblp_key: conf/osdi/GuanF0RRY0A25
venue_name: OSDI
pages: 205-220
- title: Achieving Low-Latency Graph-Based Vector Search via Aligning Best-First Search
Algorithm with SSD
authors:
- Hao Guo
- Youyou Lu
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/guo
dblp_key: conf/osdi/GuoL25
venue_name: OSDI
pages: 171-186
- title: 'WaferLLM: Large Language Model Inference at Wafer Scale'
authors:
- Congjie He
- Yeqi Huang
- Pei Mu 0003
- Ziming Miao
- Jilong Xue
- Lingxiao Ma
- Fan Yang 0024
- Luo Mai
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/he
dblp_key: conf/osdi/HeH0MXM0M25
venue_name: OSDI
pages: 257-273
- title: 'Neutrino: Fine-grained GPU Kernel Profiling via Programmable Probing'
authors:
- Songlin Huang
- Chenshu Wu
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/huang-songlin
dblp_key: conf/osdi/HuangW25
venue_name: OSDI
pages: 331-355
- title: Bayesian Code Diffusion for Efficient Automatic Deep Learning Program Optimization
authors:
- Isu Jeong
- Seulki Lee 0002
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/jeong
dblp_key: conf/osdi/Jeong025
venue_name: OSDI
pages: 295-311
- title: 'Training with Confidence: Catching Silent Errors in Deep Learning Training
with Automated Proactive Checks'
authors:
- Yuxuan Jiang 0016
- Ziming Zhou
- Boyu Xu 0005
- Beijie Liu
- Runhui Xu
- Peng Huang 0005
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/jiang
dblp_key: conf/osdi/JiangZXLXH25
venue_name: OSDI
pages: 313-329
- title: 'PoWER Never Corrupts: Tool-Agnostic Verification of Crash Consistency and
Corruption Detection'
authors:
- Hayley LeBlanc
- Jacob R. Lorch
- Chris Hawblitzel
- Cheng Huang
- Yiheng Tao
- Nickolai Zeldovich
- Vijay Chidambaram
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/leblanc
dblp_key: conf/osdi/LeBlancLHHTZC25
venue_name: OSDI
pages: 839-857
- title: Understanding Stragglers in Large Model Training Using What-if Analysis
authors:
- Jinkun Lin
- Ziheng Jiang
- Zuquan Song
- Sida Zhao
- Menghan Yu
- Zhanghan Wang
- Chenyuan Wang
- Zuocheng Shi
- Xiang Shi
- Wei Jia
- Zherui Liu
- Shuguang Wang
- Haibin Lin
- Xin Liu 0086
- Aurojit Panda
- Jinyang Li 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/lin-jinkun
dblp_key: conf/osdi/LinJSZYWWSSJLWL25
venue_name: OSDI
pages: 483-498
- title: Tiered Memory Management Beyond Hotness
authors:
- Jinshu Liu
- Hamid Hadian
- Hanchen Xu
- Huaicheng Li
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/liu
dblp_key: conf/osdi/LiuHXL25
venue_name: OSDI
pages: 731-747
- title: Deriving Semantic Checkers from Tests to Detect Silent Failures in Production
Distributed Systems
authors:
- Chang Lou
- Dimas Shidqi Parikesit
- Yujin Huang
- Zhewen Yang
- Senapati Diwangkara
- Yuzhuo Jing
- Achmad Imam Kistijantoro
- Ding Yuan 0004
- Suman Nath
- Peng Huang 0005
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/lou
dblp_key: conf/osdi/LouPHYDJK0N025
venue_name: OSDI
pages: 19-38
- title: 'Skybridge: Bounded Staleness for Distributed Caches'
authors:
- Robert Lyerly
- Scott Pruett
- Kevin Doherty
- Greg Rogers
- Nathan Bronson
- John Hugg
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/lyerly
dblp_key: conf/osdi/LyerlyPDRBH25
venue_name: OSDI
pages: 187-204
- title: 'MettEagle: Costs and Benefits of Implementing Containers on Microkernels'
authors:
- Till Miemietz
- Viktor Reusch
- Matthias Hille
- Lars Wrenger
- Jana Eisoldt
- Jan Klötzke
- Max Kurze
- Adam Lackorzynski
- Michael Roitzsch
- Hermann Härtig
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/miemietz
dblp_key: conf/osdi/MiemietzRHWEKKL25
venue_name: OSDI
pages: 979-996
- title: 'Quake: Adaptive Indexing for Vector Search'
authors:
- Jason Mohoney
- Devesh Sarda
- Mengze Tang
- Shihabur Rahman Chowdhury
- Anil Pacaci
- Ihab F. Ilyas
- Theodoros Rekatsinas
- Shivaram Venkataraman
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/mohoney
dblp_key: conf/osdi/MohoneySTCPIRV25
venue_name: OSDI
pages: 153-169
- title: Fast and Synchronous Crash Consistency with Metadata Write-Once File System
authors:
- Yanqi Pan
- Wen Xia
- Yifeng Zhang
- Xiangyu Zou
- Hao Huang
- Zhenhua Li 0001
- Chentao Wu
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/pan
dblp_key: conf/osdi/PanXZZH0W25
venue_name: OSDI
pages: 859-878
- title: Principles and Methodologies for Serial Performance Optimization
authors:
- Sujin Park
- Mingyu Guan
- Xiang Cheng
- Taesoo Kim
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/park-sujin
dblp_key: conf/osdi/ParkGCK25
venue_name: OSDI
pages: 357-373
- title: 'DecDEC: A Systems Approach to Advancing Low-Bit LLM Quantization'
authors:
- Yeonhong Park
- Jake Hyun
- Hojoon Kim
- Jae W. Lee
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/park-yeonhong
dblp_key: conf/osdi/ParkHKL25
venue_name: OSDI
pages: 803-819
- title: Disentangling the Dual Role of NIC Receive Rings
authors:
- Boris Pismenny
- Adam Morrison 0001
- Dan Tsafrir
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/pismenny
dblp_key: conf/osdi/Pismenny0T25
venue_name: OSDI
pages: 651-669
- title: Enabling Efficient GPU Communication over Multiple NICs with FuseLink
authors:
- Zhenghang Ren
- Yuxuan Li
- Zilong Wang 0007
- Xinyang Huang
- Wenxue Li 0004
- Kaiqiang Xu
- Xudong Liao
- Yijun Sun
- Bowen Liu 0002
- Han Tian
- Junxue Zhang 0001
- Mingfei Wang
- Zhizhen Zhong
- Guyue Liu
- Ying Zhang 0022
- Kai Chen 0005
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/ren
dblp_key: conf/osdi/RenL0HLXLSLT0WZ25
venue_name: OSDI
pages: 91-108
- title: 'Building Bridges: Safe Interactions with Foreign Languages through Omniglot'
authors:
- Leon Schuermann
- Jack Toubes
- Tyler Potyondy
- Pat Pannuto
- Mae Milano
- Amit Levy 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/schuermann
dblp_key: conf/osdi/SchuermannTPPML25
venue_name: OSDI
pages: 595-613
- title: 'Mako: Speculative Distributed Transactions with Geo-Replication'
authors:
- Weihai Shen
- Yang Cui
- Siddhartha Sen 0001
- Sebastian Angel
- Shuai Mu 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/shen-weihai
dblp_key: conf/osdi/ShenC0A025
venue_name: OSDI
pages: 129-152
- title: 'XSched: Preemptive Scheduling for Diverse XPUs'
authors:
- Weihang Shen
- Mingcong Han
- Jialong Liu
- Rong Chen 0001
- Haibo Chen 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/shen-weihang
dblp_key: conf/osdi/ShenHL0025
venue_name: OSDI
pages: 671-692
- title: 'Weave: Efficient and Expressive Oblivious Analytics at Scale'
authors:
- Mahdi Soleimani
- Grace Jia
- Anurag Khandelwal
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/soleimani
dblp_key: conf/osdi/SoleimaniJK25
venue_name: OSDI
pages: 939-955
- title: 'Scalio: Scaling up DPU-based JBOF Key-value Store with NVMe-oF Target Offload'
authors:
- Xun Sun
- Mingxing Zhang
- Yingdi Shan
- Kang Chen
- Jinlei Jiang
- Yongwei Wu 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/sun
dblp_key: conf/osdi/SunZSCJ025
venue_name: OSDI
pages: 449-464
- title: Quantum Virtual Machines
authors:
- Runzhou Tao 0001
- Hongzheng Zhu
- Jason Nieh
- Jianan Yao
- Ronghui Gu
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/tao
dblp_key: conf/osdi/TaoZNYG25
venue_name: OSDI
pages: 411-428
- title: 'FineMem: Breaking the Allocation Overhead vs. Memory Waste Dilemma in Fine-Grained
Disaggregated Memory Management'
authors:
- Xiaoyang Wang
- Yongkun Li 0001
- Kan Wu
- Wenzhe Zhu
- Yuqi Li
- Yinlong Xu 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wang-xiaoyang
dblp_key: conf/osdi/Wang0WZLX25
venue_name: OSDI
pages: 57-74
- title: To PRI or Not To PRI, That's the question
authors:
- Yun Wang 0039
- Liang Chen
- Jie Ji
- Xianting Tian
- Ben Luo
- Zhixiang Wei
- Zhibai Huang
- Kailiang Xu
- Kaihuan Peng
- Kaijie Guo
- Ning Luo
- Guangjian Wang
- Shengdong Dai
- Yibin Shen
- Jiesheng Wu
- Zhengwei Qi
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wang-yun
dblp_key: conf/osdi/WangCJTLWHXPGLW25
venue_name: OSDI
pages: 75-89
- title: 'Söze: One Network Telemetry Is All You Need for Per-flow Weighted Bandwidth
Allocation at Scale'
authors:
- Weitao Wang
- T. S. Eugene Ng
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wang-weitao
dblp_key: conf/osdi/WangN25
venue_name: OSDI
pages: 375-392
- title: 'ZEN: Empowering Distributed Training with Sparsity-driven Data Synchronization'
authors:
- Zhuang Wang
- Zhaozhuo Xu
- Jingyi Xi
- Yuke Wang
- Anshumali Shrivastava
- T. S. Eugene Ng
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wang-zhuang
dblp_key: conf/osdi/WangXXWSN25
venue_name: OSDI
pages: 537-556
- title: 'Mirage: A Multi-Level Superoptimizer for Tensor Programs'
authors:
- Mengdi Wu
- Xinhao Cheng
- Shengyu Liu
- Chunan Shi
- Jianan Ji
- Man Kit Ao
- Praveen Velliengiri
- Xupeng Miao
- Oded Padon
- Zhihao Jia
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wu-mengdi
dblp_key: conf/osdi/WuCLSJAVMPJ25
venue_name: OSDI
pages: 21-38
- title: OS Rendering Service Made Parallel with Out-of-Order Execution and In-Order
Commit
authors:
- Yuanpei Wu
- Chao Xu
- Yubin Xia
- Yang Yu
- Ming Fu
- Binyu Zang
- Haibo Chen 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/wu-yuanpei
dblp_key: conf/osdi/WuXXYFZ025
venue_name: OSDI
pages: 693-710
- title: 'Decouple and Decompose: Scaling Resource Allocation with DeDe'
authors:
- Zhiying Xu
- Minlan Yu
- Francis Y. Yan
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/xu
dblp_key: conf/osdi/XuYY25
venue_name: OSDI
pages: 393-409
- title: 'Deterministic Client: Enforcing Determinism on Untrusted Machine Code'
authors:
- Zachary Yedidia
- Geoffrey Ramseyer
- David Mazières
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/yedidia
dblp_key: conf/osdi/YedidiaRM25
venue_name: OSDI
pages: 633-649
- title: 'KRR: Efficient and Scalable Kernel Record Replay'
authors:
- Tianren Zhang
- Sishuai Gong
- Pedro Fonseca 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zhang-tianren
dblp_key: conf/osdi/ZhangG025
venue_name: OSDI
pages: 615-632
- title: 'Basilisk: Using Provenance Invariants to Automate Proofs of Undecidable
Protocols'
authors:
- Tony Nuda Zhang
- Keshav Singh
- Tej Chajed
- Manos Kapritsos
- Bryan Parno
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zhang-tony
dblp_key: conf/osdi/ZhangSCKP25
venue_name: OSDI
pages: 1-17
- title: 'BlitzScale: Fast and Live Large Model Autoscaling with O(1) Host Caching'
authors:
- Dingyan Zhang
- Haotian Wang
- Yang Liu
- Xingda Wei
- Yizhou Shan
- Rong Chen 0001
- Haibo Chen 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zhang-dingyan
dblp_key: conf/osdi/ZhangWLWS0025
venue_name: OSDI
pages: 275-293
- title: Extending Applications Safely and Efficiently
authors:
- Yusheng Zheng
- Tong Yu
- Yiwei Yang 0002
- Yanpeng Hu
- Xiaozheng Lai
- Dan Williams 0001
- Andi Quinn
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zheng-yusheng
dblp_key: conf/osdi/ZhengY0HL0Q25
venue_name: OSDI
pages: 557-574
- title: 'NanoFlow: Towards Optimal Large Language Model Serving Throughput'
authors:
- Kan Zhu
- Yufei Gao
- Yilong Zhao 0002
- Liangyu Zhao
- Gefei Zuo
- Yile Gu
- Dedong Xie
- Zihao Ye 0001
- Keisuke Kamahori
- Chien-Yu Lin
- Ziren Wang
- Stephanie Wang
- Arvind Krishnamurthy
- Baris Kasikci
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zhu-kan
dblp_key: conf/osdi/ZhuGZZZGX0KLWWK25
venue_name: OSDI
pages: 749-765
- title: 'Compass: Encrypted Semantic Search with High Accuracy'
authors:
- Jinhao Zhu
- Liana Patel
- Matei Zaharia
- Raluca Ada Popa
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25/presentation/zhu-jinhao
dblp_key: conf/osdi/ZhuPZP25
venue_name: OSDI
pages: 915-938
- title: 19th USENIX Symposium on Operating Systems Design and Implementation, OSDI
2025, Boston, MA, USA, July 7-9, 2025
authors:
- Lidong Zhou
- Yuanyuan Zhou 0001
year: '2025'
doi: null
url: https://www.usenix.org/conference/osdi25
dblp_key: conf/osdi/2025
venue_name: OSDI
pages: null

View File

@@ -0,0 +1,137 @@
venue: OSDI
year: 2025
papers:
- title: 'Basilisk: Using Provenance Invariants to Automate Proofs of Undecidable Protocols'
authors:
- Tony Nuda Zhang
- Keshav Singh
- Tej Chajed
- Manos Kapritsos
- Bryan Parno
reason: "Automates the construction of correctness proofs for distributed protocols that were previously considered undecidable, advancing the state of the art in verified systems."
- title: 'Mako: Speculative Distributed Transactions with Geo-Replication'
authors:
- Weihai Shen
- Yang Cui
- Siddhartha Sen 0001
- Sebastian Angel
- Shuai Mu 0001
reason: "Combines speculative execution with geo-replication to deliver low-latency distributed transactions without sacrificing consistency, addressing a fundamental tension in wide-area systems."
- title: Low End-to-End Latency atop a Speculative Shared Log with Fix-Ante Ordering
authors:
- Shreesha G. Bhat
- Tony Hong
- Xuhao Luo
- Jiyu Hu
- Aishwarya Ganesan
- Ramnatthan Alagappan
reason: "Introduces fix-ante ordering to achieve low latency on a shared log without sacrificing throughput, offering a new design point for log-based distributed storage."
- title: 'Okapi: Decoupling Data Striping and Redundancy Grouping in Cluster File Systems'
authors:
- Sanjith Athlur
- Timothy Kim
- Saurabh Kadekodi
- Francisco Maturana
- Xavier Ramos
- Arif Merchant
- K. V. Rashmi
- Gregory R. Ganger
reason: "Challenges a long-standing coupling in erasure-coded cluster file systems, enabling independent optimization of striping and redundancy with measurable gains in production workloads."
- title: 'PoWER Never Corrupts: Tool-Agnostic Verification of Crash Consistency and Corruption Detection'
authors:
- Hayley LeBlanc
- Jacob R. Lorch
- Chris Hawblitzel
- Cheng Huang
- Yiheng Tao
- Nickolai Zeldovich
- Vijay Chidambaram
reason: "Provides a tool-agnostic framework for formally verifying crash consistency and corruption detection in storage systems, raising the bar for storage software correctness."
- title: 'EMT: An OS Framework for New Memory Translation Architectures'
authors:
- Siyuan Chai 0001
- Jiyuan Zhang 0003
- Jongyul Kim 0001
- Alan Wang
- Fan Chung
- Jovan Stojkovic
- Weiwei Jia 0001
- Dimitrios Skarlatos 0002
- Josep Torrellas
- Tianyin Xu
reason: "Defines an OS abstraction layer that decouples applications from hardware-specific memory translation mechanisms, enabling future memory architectures to be adopted without OS rewrites."
- title: 'XSched: Preemptive Scheduling for Diverse XPUs'
authors:
- Weihang Shen
- Mingcong Han
- Jialong Liu
- Rong Chen 0001
- Haibo Chen 0001
reason: "Generalises preemptive scheduling to heterogeneous accelerators (XPUs), providing a unified OS-level mechanism for fair and responsive multi-tenant accelerator sharing."
- title: Extending Applications Safely and Efficiently
authors:
- Yusheng Zheng
- Tong Yu
- Yiwei Yang 0002
- Yanpeng Hu
- Xiaozheng Lai
- Dan Williams 0001
- Andi Quinn
reason: "Presents a principled model for safe, efficient application extensibility that generalises beyond eBPF, with implications for the design of future OS extension mechanisms."
- title: 'NanoFlow: Towards Optimal Large Language Model Serving Throughput'
authors:
- Kan Zhu
- Yufei Gao
- Yilong Zhao 0002
- Liangyu Zhao
- Gefei Zuo
- Yile Gu
- Dedong Xie
- Zihao Ye 0001
- Keisuke Kamahori
- Chien-Yu Lin
- Ziren Wang
- Stephanie Wang
- Arvind Krishnamurthy
- Baris Kasikci
reason: "Analytically characterises the throughput ceiling for LLM serving and proposes a system that approaches that bound through fine-grained intra-device parallelism."
- title: 'WaferLLM: Large Language Model Inference at Wafer Scale'
authors:
- Congjie He
- Yeqi Huang
- Pei Mu 0003
- Ziming Miao
- Jilong Xue
- Lingxiao Ma
- Fan Yang 0024
- Luo Mai
reason: "Demonstrates end-to-end LLM inference on wafer-scale hardware, tackling novel challenges in memory, communication, and fault tolerance at an unprecedented scale of integration."
- title: 'Mirage: A Multi-Level Superoptimizer for Tensor Programs'
authors:
- Mengdi Wu
- Xinhao Cheng
- Shengyu Liu
- Chunan Shi
- Jianan Ji
- Man Kit Ao
- Praveen Velliengiri
- Xupeng Miao
- Oded Padon
- Zhihao Jia
reason: "Extends tensor program superoptimisation to multiple abstraction levels, discovering non-obvious kernel fusions that outperform hand-tuned implementations for ML workloads."
- title: 'Training with Confidence: Catching Silent Errors in Deep Learning Training with Automated Proactive Checks'
authors:
- Yuxuan Jiang 0016
- Ziming Zhou
- Boyu Xu 0005
- Beijie Liu
- Runhui Xu
- Peng Huang 0005
reason: "Addresses the underappreciated problem of silent hardware and software errors in large-scale DL training, providing automated proactive checks that catch failures before they corrupt long training runs."
- title: 'Compass: Encrypted Semantic Search with High Accuracy'
authors:
- Jinhao Zhu
- Liana Patel
- Matei Zaharia
- Raluca Ada Popa
reason: "Enables accurate semantic (vector) search over encrypted data, bridging the gap between privacy-preserving computation and modern retrieval workloads in cloud-hosted RAG systems."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,281 @@
venue: SC
year: 2024
papers:
- title: "Pushing the Limit of Quantum Mechanical Simulation to the Raman Spectra of\
\ a Biological System with 100 Million Atoms"
authors:
- Honghui Shang
- Ying Liu 0055
- Zhikun Wu
- Zhenchuan Chen
- Jinfeng Liu 0004
- Meiyue Shao
- Yingzhou Li
- Bowen Kan
- Huimin Cui
- Xiaobing Feng 0002
- Yunquan Zhang
- Donald G. Truhlar
- Hong An
- Xiao He 0004
- Jinlong Yang 0003
reason: "Gordon Bell-class result scaling ab initio Raman spectroscopy to 100 million atoms, pushing quantum-chemical simulation well beyond prior limits."
- title: "Breaking the Molecular Dynamics Timescale Barrier Using a Wafer-Scale System"
authors:
- Kylee Santos
- Stan G. Moore
- Tomas Oppelstrup
- Amirali Sharifian
- Ilya Sharapov
- Aidan P. Thompson
- Delyan Z. Kalchev
- Danny Perez
- Robert Schreiber
- Scott Pakin
- Edgar A. Leon
- James H. Laros III
- Michael James 0002
- Sivasankaran Rajamanickam
reason: "Demonstrates how a Cerebras wafer-scale engine shatters the classical MD timescale barrier, enabling microsecond-regime atomistic simulation at unprecedented speed."
- title: "Scaling Molecular Dynamics with ab initio Accuracy to 149 Nanoseconds per\
\ Day"
authors:
- Jianxiong Li
- Boyang Li
- Zhuoqiang Guo
- Mingzhen Li 0001
- Enji Li
- Lijun Liu
- Guojun Yuan
- Zhan Wang 0003
- Guangming Tan
- Weile Jia
reason: "Achieves 149 ns/day for large-scale deep-potential MD, combining neural-network potentials and HPC engineering to approach DFT accuracy at AIMD-like scale."
- title: "Breaking the Million-Electron and 1 EFLOP/s Barriers: Biomolecular-Scale\
\ Ab Initio Molecular Dynamics Using MP2 Potentials"
authors:
- Ryan Stocks
- Jorge L. Galvez Vallejo
- Fiona C. Y. Yu
- Calum Snowdon
- Elise Palethorpe
- Jakub Kurzak
- Dmytro Bykov
- Giuseppe M. J. Barca
reason: "First demonstration of MP2-level AIMD at the million-electron and exaFLOP/s scale, a landmark in quantum chemistry on supercomputers."
- title: "Fire-Flyer AI-HPC: A Cost-Effective Software-Hardware Co-Design for Deep\
\ Learning"
authors:
- Wei An
- Xiao Bi
- Guanting Chen 0002
- Shanhuang Chen
- Chengqi Deng
- Honghui Ding
- Kai Dong 0003
- Qiushi Du
- Wenjun Gao
- Kang Guan
- Jianzhong Guo
- Yongqiang Guo
- Zhe Fu 0009
- Ying He 0018
- Panpan Huang
- Jiashi Li
- Wenfeng Liang
- Xiaodong Liu 0021
- Xin Liu 0126
- Yiyuan Liu
- Yuxuan Liu 0019
- Shanghao Lu
- Xuan Lu
- Xiaotao Nie
- Tian Pei
- Junjie Qiu
- Hui Qu
- Zehui Ren
- Zhangli Sha
- Xuecheng Su
- Xiaowen Sun
- Yixuan Tan
- Minghui Tang
- Shiyu Wang
- Yaohui Wang
- Yongji Wang
- Ziwei Xie
- Yiliang Xiong
- Yanhong Xu
- Shengfeng Ye
- Shuiping Yu
- Yukun Zha
- Liyue Zhang
- Haowei Zhang
- Mingchuan Zhang
- Wentao Zhang
- Yichao Zhang 0004
- Chenggang Zhao
- Yao Zhao 0005
- Shangyan Zhou
- Shunfeng Zhou
- Yuheng Zou
reason: "Full system co-design report from DeepSeek's AI-HPC cluster showing 40% cost reduction vs. NVIDIA DGX through network/software optimizations, with production evidence at scale."
- title: "MProt-DPO: Breaking the ExaFLOPS Barrier for Multimodal Protein Design Workflows\
\ with Direct Preference Optimization"
authors:
- Gautham Dharuman
- Kyle Hippe
- Alexander Brace
- Sam Foreman
- Väinö Hatanpää
- Varuni Katti Sastry
- Huihuo Zheng
- Logan T. Ward
- Servesh Muralidharan
- Archit Vasan
- Bharat Kale
- Carla M. Mann
- Heng Ma
- Yun-Hsuan Cheng
- Yuliana Zamora
- Shengchao Liu
- Chaowei Xiao
- Murali Emani
- Tom Gibbs
- Mahidhar Tatineni
- Deepak Canchi
- Jerome Mitchell
- Koichi Yamada
- Maria Garzaran 0001
- Michael E. Papka
- Ian T. Foster
- Rick Stevens
- Anima Anandkumar
- Venkatram Vishwanath
- Arvind Ramanathan
reason: "First exaFLOP/s AI science workflow, integrating multimodal protein design with DPO alignment at supercomputing scale across Frontier and Aurora."
- title: "ORBIT: Oak Ridge Base Foundation Model for Earth System Predictability"
authors:
- Xiao Wang 0004
- Siyan Liu
- Aristeidis Tsaris
- Jong-Youl Choi
- Ashwin M. Aji
- Ming Fan
- Wei Zhang 0261
- Junqi Yin
- Moetasim Ashfaq
- Dan Lu 0001
- Prasanna Balaprakash
reason: "Introduces a large foundation model for Earth system prediction trained on Frontier, demonstrating how exascale AI infrastructure enables climate-scale spatiotemporal modeling."
- title: "Democratizing AI: Open-source Scalable LLM Training on GPU-based Supercomputers"
authors:
- Siddharth Singh
- Prajwal Singhania
- Aditya K. Ranjan
- John Kirchenbauer
- Jonas Geiping
- Yuxin Wen
- Neel Jain
- Abhimanyu Hans
- Manli Shu
- Aditya Tomar
- Tom Goldstein
- Abhinav Bhatele
reason: "Presents an open-source framework for LLM training at thousands-of-GPU scale, systematically analyzing throughput, memory, and communication trade-offs on leadership supercomputers."
- title: "Exploring GPU-to-GPU Communication: Insights into Supercomputer Interconnects"
authors:
- Daniele De Sensi
- Lorenzo Pichetti
- Flavio Vella
- Tiziano De Matteis
- Zebin Ren
- Luigi Fusco
- Matteo Turisini
- Daniele Cesarini
- Kurt Lust
- Animesh Trivedi
- Duncan Roweth
- Filippo Spiga
- Salvatore Di Girolamo
- Torsten Hoefler
reason: "Comprehensive empirical study of GPU-to-GPU communication across six major supercomputers, revealing bottlenecks and bandwidth characteristics relevant to all distributed AI/HPC workloads."
- title: "Network-Offloaded Bandwidth-Optimal Broadcast and Allgather for Distributed\
\ AI"
authors:
- Mikhail Khalilov
- Salvatore Di Girolamo
- Marcin Chrapek
- Rami Nudelman
- Gil Bloch
- Torsten Hoefler
reason: "Achieves bandwidth-optimal collective communication by offloading broadcast and allgather to SmartNICs, directly benefiting large-scale distributed deep learning."
- title: "A Workflow Roofline Model for End-to-End Workflow Performance Analysis"
authors:
- Nan Ding 0006
- Brian Austin
- Yang Liu 0179
- Neil Mehta
- Steven Farrell
- Johannes P. Blaschke
- Leonid Oliker
- Hai Ah Nam
- Nicholas J. Wright
- Samuel Williams 0001
reason: "Extends the Roofline model to full end-to-end HPC workflows, enabling systematic performance diagnosis across compute, I/O, and data movement stages."
- title: "GVARP: Detecting Performance Variance on Large-Scale Heterogeneous Systems"
authors:
- Xin You 0001
- Zhibo Xuan
- Hailong Yang 0002
- Zhongzhi Luan
- Yi Liu 0013
- Depei Qian 0002
reason: "Identifies and diagnoses GPU performance variance at scale on heterogeneous supercomputers, an increasingly critical issue for reproducibility and efficiency."
- title: "A Digital Twin Framework for Liquid-cooled Supercomputers as Demonstrated\
\ at Exascale"
authors:
- Wesley Brewer
- Matthias Maiterth
- Vineet Kumar
- Rafal P. Wojda
- Sedrick Bouknight
- Jesse Hines
- Woong Shin
- Scott Greenwood
- David Grant
- Wesley Williams
- Feiyi Wang
reason: "First deployment of a digital twin for a liquid-cooled exascale system (Frontier), enabling real-time thermal and power management with validated empirical results."
- title: "Doubling Graph Traversal Efficiency to 198 TeraTEPS on the Supercomputer\
\ Fugaku"
authors:
- Junya Arai
- Masahiro Nakao
- Yuto Inoue
- Kanto Teranishi
- Koji Ueno
- Keiichiro Yamamura
- Mitsuhisa Sato
- Katsuki Fujisawa
reason: "Sets a new world record for graph traversal at 198 TTEPS on Fugaku through novel communication and load-balancing techniques, a landmark Graph500 result."
- title: "MegaMmap: Blurring the Boundary Between Memory and Storage for Data-Intensive\
\ Workloads"
authors:
- Luke Logan
- Anthony Kougkas
- Xian-He Sun
reason: "Novel storage abstraction that transparently tiered memory and storage hierarchies, delivering near-DRAM performance for data-intensive HPC and AI workloads."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,235 @@
venue: SC
year: 2025
papers:
- title: 'Cosmological Hydrodynamics at Exascale: A Trillion-Particle Leap in Capability'
authors:
- Nicholas Frontiere
- J. D. Emberson
- Michael Buehlmann
- Esteban M. Rangel
- Salman Habib 0002
- Katrin Heitmann
- Patricia Larsen
- Vitali A. Morozov
- Adrian Pope
- Claude-André Faucher-Giguère
- Antigoni Georgiadou
- Damien Lebrun-Grandié
- Andrey Prokopenko
reason: "Delivers the first trillion-particle cosmological hydrodynamics simulation on exascale hardware, demonstrating sustained petaflop-scale performance on a flagship scientific application."
- title: Ab-initio Quantum Transport with the GW Approximation, 42, 240 Atoms, and Sustained Exascale Performance
authors:
- Nicolas Vetsch
- Alexander Maeder
- Vincent Maillou
- Anders Winka
- Jiang Cao
- Grzegorz Kwasniewski
- Leonard Deuschle
- Torsten Hoefler
- Alexandros Nikolaos Ziogas
- Mathieu Luisier
reason: "Achieves sustained exascale performance for first-principles quantum transport at 42,240 atoms, establishing a new scale record for the GW many-body perturbation method."
- title: Kilometer-Scale AI-Powered and Performance-Portable Earth System Model (AP3ESM) to Achieve Year-Scale Simulation Speed on Heterogeneous Supercomputers
authors:
- Kai Xu
- Maoxue Yu
- Yuhu Chen
- Jie Gao
- Shuang Wang
- Jiaying Song
- Xiaohui Duan
- Junwei Wei
- Jiangfeng Yu
- Hailong Liu 0007
- Jinrong Jiang
- Yi Zhang 0127
- Pengfei Lin 0004
- Tianyi Wang
- Pengfei Wang
- Weipeng Zheng
- Jingwei Xie
- Jiakang Zhang
- Zilu Liu
- Xiaoyu Jin
- Jilin Wei
- Qixin Chang
- Qingxia Lin
- Yanzhi Zhou
- Weiguo Liu
- Wei Xue 0003
- Yiwen Li
- Haohuan Fu
- Yue Yu 0001
- Xuebin Chi
- Lixin Wu
reason: "Integrates AI acceleration into a kilometer-scale climate model to reach year-scale simulation throughput, showing how MLphysics hybrid approaches can redefine climate modeling at supercomputer scale."
- title: 'Uno: A One-Stop Solution for Inter- and Intra-Data Center Congestion Control and Reliable Connectivity'
authors:
- Tommaso Bonato
- Sepehr Abdous
- Abdul Kabbani
- Ahmad Ghalayini
- Nadeen Gebara
- Terry Lam
- Anup Agarwal
- Tiancheng Chen
- Zhuolong Yu
- Konstantin Taranov
- Mahmoud Elhaddad
- Daniele De Sensi
- Soudeh Ghorbani
- Torsten Hoefler
reason: "Proposes a unified congestion control and reliable transport architecture spanning intra- and inter-datacenter links, with strong throughput and latency results relevant to AI and HPC clusters."
- title: 'SDR-RDMA: Software-Defined Reliability Architecture for Planetary Scale RDMA Communication'
authors:
- Mikhail Khalilov
- Siyuan Shen
- Marcin Chrapek
- Tiancheng Chen
- Kenji Nakano
- Nicola Mazzoletti
- Peter-Jan Gootzen
- Salvatore Di Girolamo
- Rami Nudelman
- Gil Bloch
- Jithin Jose
- Abdul Kabbani
- Sreevatsa Anantharamu
- Jie Zhang
- Konstantin Taranov
- Zhuolong Yu
- Scott Moe
- Mahmoud Elhaddad
- Torsten Hoefler
reason: "Introduces software-defined reliability for RDMA at global scale, decoupling reliability policies from hardware to dramatically improve fault tolerance and reconfigurability in large-scale HPC networks."
- title: 'Bine Trees: Enhancing Collective Operations by Optimizing Communication Locality'
authors:
- Daniele De Sensi
- Saverio Pasqualoni
- Lorenzo Piarulli
- Tommaso Bonato
- Seydou Ba
- Matteo Turisini
- Jens Domke
- Torsten Hoefler
reason: "Presents bine tree topologies for MPI collective operations that exploit communication locality, yielding significant latency and bandwidth improvements over standard binomial trees on modern HPC interconnects."
- title: 'STELLAR: Storage Tuning Engine Leveraging LLM Autonomous Reasoning for High Performance Parallel File Systems'
authors:
- Chris Egersdoerfer
- Philip H. Carns
- Shane Snyder
- Robert Ross
- Dong Dai 0001
reason: "Demonstrates that an LLM-driven autonomous reasoning engine can tune parallel file system parameters as effectively as expert hand-tuning, opening a new direction for self-optimizing HPC storage."
- title: 'Phoenix: A Refactored I/O Stack for GPU Direct Storage without Phony Buffers'
authors:
- Jianqin Yan
- Shi Qiu 0012
- Yina Lv
- Yifan Hu
- Hao Chen
- Zhirong Shen
- Xin Yao
- Renhai Chen
- Jiwu Shu
- Gong Zhang 0001
- Yiming Zhang 0003
reason: "Redesigns the GPU direct storage I/O stack to eliminate staging buffers, achieving large bandwidth gains for GPU-to-SSD transfers critical to LLM training and scientific data workflows."
- title: Breaking the System Noise Barrier at Exascale
authors:
- Edgar A. León
- Joseph Glenski
- Mark J. Stock
- Kim H. McMahon
- William Loewe
- Clark Snyder
- Larry Kaplan
- Srinath Vadlamani
- Timothy I. Mattox
- Trent D'Hooge
- Brian Behlendorf
- Nathan Hanford
- Ramesh Pankajakshan
- Matthew L. Leininger
reason: "Provides a rigorous characterization and mitigation of OS and hardware noise at exascale, demonstrating measurable improvements in collective communication performance on a real production system."
- title: 'Story of Two GPUs: Characterizing the Resilience of Hopper H100 and Ampere A100 GPUs'
authors:
- Shengkun Cui
- Archit Patke
- Hung Nguyen
- Aditya Ranjan
- Ziheng Chen 0006
- Phuong Cao
- Gregory H. Bauer
- Brett M. Bode
- Catello Di Martino
- Saurabh Jha
- Chandra Narayanaswami
- Daby Sow
- Zbigniew T. Kalbarczyk
- Ravishankar K. Iyer
reason: "Delivers the first detailed side-by-side hardware fault-injection study of H100 and A100 GPUs, revealing how architecture changes in Hopper alter error propagation and resilience for HPC and AI workloads."
- title: Exploring and Mitigating Failure Behavior of Large Language Model Training Workloads in HPC Systems
authors:
- Pengfei Yu 0002
- Jingjing Gu
- Hao Han
- Dazhong Shen
- Bao Wen
- Yang Liu 0390
reason: "Characterizes real-world failure modes of large-scale LLM training on HPC clusters and proposes targeted mitigation strategies, providing essential reliability insights for AI infrastructure operators."
- title: 'XaaS Containers: Performance-Portable Representation With Source and IR Containers'
authors:
- Marcin Copik
- Eiman Alnuaimi
- Alok Kamatar
- Valérie Hayot-Sasson
- Alberto Madonna
- Todd Gamblin
- Kyle Chard
- Ian T. Foster
- Torsten Hoefler
reason: "Proposes source- and IR-level HPC containers that enable performance portability across heterogeneous architectures without recompilation, addressing a key deployment challenge for reproducible HPC software."
- title: 'cMPI: Using CXL Memory Sharing for MPI One-Sided and Two-Sided Inter-Node Communications'
authors:
- Xi Wang 0027
- Bin Ma
- Jongryool Kim
- Byungil Koh
- Hoshik Kim
- Dong Li 0001
reason: "Exploits CXL memory semantics to implement MPI communication primitives with dramatically reduced software overhead, demonstrating a promising path for memory-centric supercomputer interconnects."
- title: 'X-MoE: Enabling Scalable Training for Emerging Mixture-of-Experts Architectures on HPC Platforms'
authors:
- Yueming Yuan
- Ahan Gupta
- Jianping Li
- Sajal Dash
- Feiyi Wang
- Minjia Zhang
reason: "Addresses the communication and load-balance bottlenecks of sparse Mixture-of-Experts training at scale, achieving efficient utilization of large GPU clusters for next-generation LLM workloads."
- title: Benchmark-driven Models for Energy Analysis and Attribution of GPU-Accelerated Supercomputing
authors:
- Oscar Antepara
- Zhengji Zhao
- Brian Austin
- Nan Ding 0006
- Leonid Oliker
- Nicholas J. Wright
- Samuel Williams 0001
reason: "Develops fine-grained benchmark-driven energy models for GPU supercomputers that attribute power consumption to individual components and workloads, enabling principled energy optimization at the facility level."

View File

@@ -0,0 +1,803 @@
venue: SEC
year: 2024
source: dblp
count: 66
papers:
- title: Performance Analysis of Lightweight Container Orchestration Platforms for
Edge-Based IoT Applications
authors:
- Muhammad Usman 0012
- Simone Ferlin
- Anna Brunström
year: '2024'
doi: 10.1109/SEC62691.2024.00032
url: https://doi.org/10.1109/SEC62691.2024.00032
dblp_key: conf/ieeesec/0012FB24
venue_name: SEC
pages: 321-332
- title: 'Poster: Reliable 3D Reconstruction for Ad-Hoc Edge Implementations'
authors:
- Md. Nurul Absur
- Swastik Brahma
- Saptarshi Debroy
year: '2024'
doi: 10.1109/SEC62691.2024.00072
url: https://doi.org/10.1109/SEC62691.2024.00072
dblp_key: conf/ieeesec/AbsurBD24
venue_name: SEC
pages: 539-541
- title: 'CroMA: Enhancing Fault-Resilience of Machine Learning-Coupled IoT Applications'
authors:
- Yousef AlShehri
- Lakshmish Ramaswamy
year: '2024'
doi: 10.1109/SEC62691.2024.00013
url: https://doi.org/10.1109/SEC62691.2024.00013
dblp_key: conf/ieeesec/AlShehriR24
venue_name: SEC
pages: 59-70
- title: 'Poster: Lagrange-Based Optimized Forwarding Strategy for Information-Centric
Vehicular Networks'
authors:
- Muhammad Nadeem Ali
- Muhammad Imran 0024
- Ihsan Ullah
- Gökhan Seçinti
- Byung-Seo Kim
year: '2024'
doi: 10.1109/SEC62691.2024.00070
url: https://doi.org/10.1109/SEC62691.2024.00070
dblp_key: conf/ieeesec/Ali0USK24
venue_name: SEC
pages: 533-535
- title: Detection and Classification of High Energy Cosmic Rays Using TinyML
authors:
- Moez Altayeb
- Marco Zennaro
year: '2024'
doi: 10.1109/SEC62691.2024.00048
url: https://doi.org/10.1109/SEC62691.2024.00048
dblp_key: conf/ieeesec/AltayebZ24
venue_name: SEC
pages: 431-436
- title: Effects of Geohashing and K-Means Clustering on Uniqueness in a Mobility
Dataset
authors:
- Andrea Artioli
- Luca Bedogni
- Mauro Andreolini
year: '2024'
doi: 10.1109/SEC62691.2024.00042
url: https://doi.org/10.1109/SEC62691.2024.00042
dblp_key: conf/ieeesec/ArtioliBA24
venue_name: SEC
pages: 389-394
- title: 'Meunik: Rethinking Virtual Machine Memory Resource Management for Unikernel-Based
VMs'
authors:
- Yongshu Bai
- Xin Zhang
- Yifan Zhang 0002
year: '2024'
doi: 10.1109/SEC62691.2024.00030
url: https://doi.org/10.1109/SEC62691.2024.00030
dblp_key: conf/ieeesec/BaiZZ24
venue_name: SEC
pages: 292-305
- title: The OODA Loop of Cloudlet-Based Autonomous Drones
authors:
- Mihir Bala
- Aditya Chanana
- Xiangliang Chen
- Qifei Dong
- Thomas Eiszler
- Jingao Xu
- Padmanabhan Pillai
- Mahadev Satyanarayanan
year: '2024'
doi: 10.1109/SEC62691.2024.00022
url: https://doi.org/10.1109/SEC62691.2024.00022
dblp_key: conf/ieeesec/BalaCCDEXPS24
venue_name: SEC
pages: 178-190
- title: 'SecFePAS: Secure Facial-Expression-Based Pain Assessment with Deep Learning
at the Edge'
authors:
- Kanwal Batool
- Saleem Anwar
- Zoltán Ádám Mann
year: '2024'
doi: 10.1109/SEC62691.2024.00046
url: https://doi.org/10.1109/SEC62691.2024.00046
dblp_key: conf/ieeesec/BatoolAM24
venue_name: SEC
pages: 417-424
- title: 'Smart Split: Leveraging TinyML and Split Computing for Efficient Edge AI'
authors:
- Fabio Bove
- Luca Bedogni
year: '2024'
doi: 10.1109/SEC62691.2024.00052
url: https://doi.org/10.1109/SEC62691.2024.00052
dblp_key: conf/ieeesec/BoveB24
venue_name: SEC
pages: 456-460
- title: Where is the Testbed for My Federated Learning Research?
authors:
- Janez Bozic
- Amândio R. Faustino
- Boris Radovic
- Marco Canini
- Veljko Pejovic
year: '2024'
doi: 10.1109/SEC62691.2024.00027
url: https://doi.org/10.1109/SEC62691.2024.00027
dblp_key: conf/ieeesec/BozicFRCP24
venue_name: SEC
pages: 249-264
- title: 'Smart Mobility Applications Supported by Non-Terrestrial Networks: Addressing
the Need for Low Per-Packet Delays'
authors:
- Armir Bujari
- Mirko Franco
- Salah Eddine Merzougui
- Claudio E. Palazzi
- Lasse B. Schmidt
year: '2024'
doi: 10.1109/SEC62691.2024.00036
url: https://doi.org/10.1109/SEC62691.2024.00036
dblp_key: conf/ieeesec/BujariFMPS24
venue_name: SEC
pages: 352-357
- title: 'Demo: End-to-End Service Quality Manager for Edge Computing'
authors:
- Jaime Sebastian Burbano
- Eldiyar Zhantileuov
- Mohammad Amin Salimi
- Rolf Schuster
year: '2024'
doi: 10.1109/SEC62691.2024.00059
url: https://doi.org/10.1109/SEC62691.2024.00059
dblp_key: conf/ieeesec/BurbanoZSS24
venue_name: SEC
pages: 505-507
- title: Integrating Smart Traffic Lights for Enhanced Urban Air Quality in Smart
Cities
authors:
- Giacomo Cabri
- Denny Ciccia
- Manuela Montangero
- Filippo Muzzini
year: '2024'
doi: 10.1109/SEC62691.2024.00037
url: https://doi.org/10.1109/SEC62691.2024.00037
dblp_key: conf/ieeesec/CabriCMM24
venue_name: SEC
pages: 358-363
- title: 'FedSLO: Towards SLO Guarantee for Federated Computing'
authors:
- Hao Che
- Todd Rosenkrantz
- Xiaoyan Shen
- Hong Jiang 0001
- Zhijun Wang 0001
year: '2024'
doi: 10.1109/SEC62691.2024.00058
url: https://doi.org/10.1109/SEC62691.2024.00058
dblp_key: conf/ieeesec/CheRS0024
venue_name: SEC
pages: 498-504
- title: 'TA-ASF: Attention-Sensitive Token Sampling and Fusing for Visual Transformer
Models on the Edge'
authors:
- Junquan Chen
- Xingzhou Zhang
- Wei Zhou 0011
- Weisong Shi
year: '2024'
doi: 10.1109/SEC62691.2024.00018
url: https://doi.org/10.1109/SEC62691.2024.00018
dblp_key: conf/ieeesec/ChenZ0S24
venue_name: SEC
pages: 123-134
- title: Edge-Aware Dual Branch Network for Nucleus Instance Segmentation
authors:
- Junzhou Chen 0002
- Yanfu Zhang
- Sidi Lu
year: '2024'
doi: 10.1109/SEC62691.2024.00057
url: https://doi.org/10.1109/SEC62691.2024.00057
dblp_key: conf/ieeesec/ChenZL24
venue_name: SEC
pages: 490-497
- title: Adaptive Frame-Aware Network for Driver Monitoring Systems
authors:
- Khaled Chikh
- Roberto Cavicchioli
year: '2024'
doi: 10.1109/SEC62691.2024.00035
url: https://doi.org/10.1109/SEC62691.2024.00035
dblp_key: conf/ieeesec/ChikhC24
venue_name: SEC
pages: 346-351
- title: 'DiCE-M: Distributed Code Generation and Execution for Marine Applications
- An Edge-Cloud Approach'
authors:
- Giuseppe Coviello
- Kunal Rao
- Gennaro Mellone
- Ciro Giuseppe De Vita
- Srimat Chakradhar
year: '2024'
doi: 10.1109/SEC62691.2024.00054
url: https://doi.org/10.1109/SEC62691.2024.00054
dblp_key: conf/ieeesec/CovielloRMVC24
venue_name: SEC
pages: 468-475
- title: 'VideoJam: Self-Balancing Architecture for Live Video Analytics'
authors:
- Youssouph Faye
- Francescomaria Faticanti
- Shubham Jain 0003
- Francesco Bronzino
year: '2024'
doi: 10.1109/SEC62691.2024.00020
url: https://doi.org/10.1109/SEC62691.2024.00020
dblp_key: conf/ieeesec/FayeFJB24
venue_name: SEC
pages: 149-163
- title: 'Demo: Edge Federated Learning over a LoRa Mesh Network'
authors:
- Nil Llisterri Giménez
- Felix Freitag
- Leandro Navarro 0001
- Mennan Selimi
year: '2024'
doi: 10.1109/SEC62691.2024.00061
url: https://doi.org/10.1109/SEC62691.2024.00061
dblp_key: conf/ieeesec/GimenezF0S24
venue_name: SEC
pages: 510-511
- title: 'Demo: Backdoor Through the Front Door: Demonstrating Security Flaws in the
Eufy Ecosystem'
authors:
- Victor Goeman
- Tom Cordemans
- Dairo de Ruck
- Jorn Lapon
- Vincent Naessens
year: '2024'
doi: 10.1109/SEC62691.2024.00060
url: https://doi.org/10.1109/SEC62691.2024.00060
dblp_key: conf/ieeesec/GoemanCRLN24
venue_name: SEC
pages: 508-509
- title: 'On Tiny Feature Engineering: Towards an Embedded EMG-Based Hand Gesture
Recognition Model'
authors:
- Andres D. Gomez-Bautista
- Diego Mendez 0001
- Catalina Alvarado-Rojas
- Iván Fernando Mondragón
- Julián D. Colorado
year: '2024'
doi: 10.1109/SEC62691.2024.00049
url: https://doi.org/10.1109/SEC62691.2024.00049
dblp_key: conf/ieeesec/Gomez-Bautista024
venue_name: SEC
pages: 437-442
- title: 'EdgeCore: Resource Dependency-Aware Multi-Tenant Orchestration for Mobile
Edge Clouds'
authors:
- Amran Haroon
- Liuyi Jin
- Radu Stoleru
- Maxwell Maurice
- Roger Blalock 0001
year: '2024'
doi: 10.1109/SEC62691.2024.00009
url: https://doi.org/10.1109/SEC62691.2024.00009
dblp_key: conf/ieeesec/HaroonJSM024
venue_name: SEC
pages: 1-14
- title: Elastic Execution of Multi-Tenant DNNs on Heterogeneous Edge MPSoCs
authors:
- Soroush Heidari
- Mehdi Ghasemi 0003
- Young Geun Kim 0001
- Carole-Jean Wu
- Sarma B. K. Vrudhula
year: '2024'
doi: 10.1109/SEC62691.2024.00029
url: https://doi.org/10.1109/SEC62691.2024.00029
dblp_key: conf/ieeesec/Heidari0KWV24
venue_name: SEC
pages: 279-291
- title: Are We There Yet? - Use Cases and Requirements for the Industrial Metaverse
authors:
- Florian Heimann
- Oliver Wetter
- Philip Wette
year: '2024'
doi: 10.1109/SEC62691.2024.00044
url: https://doi.org/10.1109/SEC62691.2024.00044
dblp_key: conf/ieeesec/HeimannWW24
venue_name: SEC
pages: 402-409
- title: 'Poster: Adapting XR Perception Serving for Edge Server Scalability'
authors:
- Jin Heo
- Ada Gavrilovska
year: '2024'
doi: 10.1109/SEC62691.2024.00064
url: https://doi.org/10.1109/SEC62691.2024.00064
dblp_key: conf/ieeesec/HeoG24
venue_name: SEC
pages: 518-520
- title: 'GT-Craft: A Framework for Fast Prototyping Geospatial-Based Digital Twins
in Unity 3D'
authors:
- Jin Heo
- Thomas David Novlan
- Salam Akoum
- Ada Gavrilovska
year: '2024'
doi: 10.1109/SEC62691.2024.00043
url: https://doi.org/10.1109/SEC62691.2024.00043
dblp_key: conf/ieeesec/HeoNAG24
venue_name: SEC
pages: 395-401
- title: An Analysis of Network Overhead in Distributed TinyML
authors:
- Ket Hollingsworth
- Sean Nian
- Alan Gutierrez
- Arthi Padmanabhan
year: '2024'
doi: 10.1109/SEC62691.2024.00051
url: https://doi.org/10.1109/SEC62691.2024.00051
dblp_key: conf/ieeesec/HollingsworthNG24
venue_name: SEC
pages: 449-455
- title: 'Colibri: Efficient Collection of Fine-Grained Resource Metrics Necessary
for Mobile Edge Computing'
authors:
- Ke-Jou Hsu
- Ketan Bhardwaj
- Ada Gavrilovska
year: '2024'
doi: 10.1109/SEC62691.2024.00011
url: https://doi.org/10.1109/SEC62691.2024.00011
dblp_key: conf/ieeesec/HsuBG24
venue_name: SEC
pages: 29-44
- title: Low-Energy On-Device Personalization for MCUs
authors:
- Yushan Huang
- Ranya Aloufi
- Xavier F. Cadet
- Yuchen Zhao
- Payam M. Barnaghi
- Hamed Haddadi
year: '2024'
doi: 10.1109/SEC62691.2024.00012
url: https://doi.org/10.1109/SEC62691.2024.00012
dblp_key: conf/ieeesec/HuangACZBH24
venue_name: SEC
pages: 45-58
- title: 'Seer: A Framework for Optimizing Traffic Camera Placement and Deep Learning
Inference at the Edge for Vehicle Path Reconstruction'
authors:
- Siddhant Jain
- Kunal Jain
- Arun Ravindran
- Suresh Purini
year: '2024'
doi: 10.1109/SEC62691.2024.00033
url: https://doi.org/10.1109/SEC62691.2024.00033
dblp_key: conf/ieeesec/JainJRP24
venue_name: SEC
pages: 333-345
- title: 'Poster: Multimodal Data Analytics and Machine Learning for Software-Defined
Vehicles'
authors:
- Benjamin Kämä
- Ella Peltonen
year: '2024'
doi: 10.1109/SEC62691.2024.00074
url: https://doi.org/10.1109/SEC62691.2024.00074
dblp_key: conf/ieeesec/KamaP24
venue_name: SEC
pages: 545-547
- title: Developing a Self-Explanatory Transformer
authors:
- Rasha Karakchi
- Ryan Karbowniczak
year: '2024'
doi: 10.1109/SEC62691.2024.00066
url: https://doi.org/10.1109/SEC62691.2024.00066
dblp_key: conf/ieeesec/KarakchiK24
venue_name: SEC
pages: 523-525
- title: 'Poster: Energy-Aware Partitioning for Edge AI'
authors:
- Dewant Katare
- Mengying Zhou
- Yang Chen 0001
- Marijn Janssen
- Aaron Yi Ding
year: '2024'
doi: 10.1109/SEC62691.2024.00067
url: https://doi.org/10.1109/SEC62691.2024.00067
dblp_key: conf/ieeesec/KatareZ0JD24
venue_name: SEC
pages: 526-527
- title: 'Camera: Churn-Tolerant Mutual Exclusion for the Edge'
authors:
- Aman Khinvasara
- Indranil Gupta
year: '2024'
doi: 10.1109/SEC62691.2024.00014
url: https://doi.org/10.1109/SEC62691.2024.00014
dblp_key: conf/ieeesec/KhinvasaraG24
venue_name: SEC
pages: 71-83
- title: Characterizing and Modeling AI-Driven Animal Ecology Studies at the Edge
authors:
- Jenna Kline
- Austin O'Quinn
- Tanya Y. Berger-Wolf
- Christopher Stewart
year: '2024'
doi: 10.1109/SEC62691.2024.00025
url: https://doi.org/10.1109/SEC62691.2024.00025
dblp_key: conf/ieeesec/KlineOBS24
venue_name: SEC
pages: 220-233
- title: 'Hierarchical Inference at the Edge: A Batch Processing Approach'
authors:
- Afroditi Letsioue
- Vishnu Narayanan Moothedath
- Adarsh Prasad Behera
- Jaya Prakash Champatie
- James Gross
year: '2024'
doi: 10.1109/SEC62691.2024.00055
url: https://doi.org/10.1109/SEC62691.2024.00055
dblp_key: conf/ieeesec/LetsioueMBCG24
venue_name: SEC
pages: 476-482
- title: 'Poster: Clipped Quantization and Huffman Coding for Efficient Secure Transfer
in Federated Learning'
authors:
- Seung-Ho Lim
- Min Choi
- Ki-Woong Park
year: '2024'
doi: 10.1109/SEC62691.2024.00065
url: https://doi.org/10.1109/SEC62691.2024.00065
dblp_key: conf/ieeesec/LimCP24
venue_name: SEC
pages: 521-522
- title: 'Poster: Robust Edge-Based Detection of Bot Attacks Through Federated Learning'
authors:
- Javier Martínez Llamas
- Davy Preuveneers
- Wouter Joosen
year: '2024'
doi: 10.1109/SEC62691.2024.00073
url: https://doi.org/10.1109/SEC62691.2024.00073
dblp_key: conf/ieeesec/LlamasPJ24
venue_name: SEC
pages: 542-544
- title: An Efficient Data Transmission Framework for Connected Vehicles
authors:
- Yichen Luo
- Yongtao Yao
- Junzhou Chen 0002
- Sidi Lu
- Weisong Shi
year: '2024'
doi: 10.1109/SEC62691.2024.00031
url: https://doi.org/10.1109/SEC62691.2024.00031
dblp_key: conf/ieeesec/LuoYCLS24
venue_name: SEC
pages: 306-320
- title: 'Falcon: Live Reconfiguration for Stateful Stream Processing on the Edge'
authors:
- Pritish Mishra
- Nelson Bore
- Brian Ramprasad
- Myles Thiessen
- Moshe Gabel
- Alexandre Da Silva Veith
- Oana Balmau
- Eyal de Lara
year: '2024'
doi: 10.1109/SEC62691.2024.00026
url: https://doi.org/10.1109/SEC62691.2024.00026
dblp_key: conf/ieeesec/MishraBRTGVBL24
venue_name: SEC
pages: 234-248
- title: Accurate and Ubiquitous Floor Identification at the Edge using a Single Cell
Tower
authors:
- Sherif Mostafa
- Moustafa Youssef 0001
- Khaled A. Harras
year: '2024'
doi: 10.1109/SEC62691.2024.00024
url: https://doi.org/10.1109/SEC62691.2024.00024
dblp_key: conf/ieeesec/Mostafa0H24
venue_name: SEC
pages: 206-219
- title: 'Demo: Emulation Platform to Build Digital Twins of Edge Computing Environments'
authors:
- Urwah Muslim
- Stephan Recker
year: '2024'
doi: 10.1109/SEC62691.2024.00062
url: https://doi.org/10.1109/SEC62691.2024.00062
dblp_key: conf/ieeesec/MuslimR24
venue_name: SEC
pages: 512-514
- title: 'Poster: Feasibility of Runtime-Neutral Wasm Instrumentation for Edge-Cloud
Workload Handover'
authors:
- Yuki Nakata
- Katsuya Matsubara
year: '2024'
doi: 10.1109/SEC62691.2024.00068
url: https://doi.org/10.1109/SEC62691.2024.00068
dblp_key: conf/ieeesec/NakataM24
venue_name: SEC
pages: 528-530
- title: 'Smart Path Planner: Enhancing Personalized Navigation and Environmental
Awareness'
authors:
- Rini Apriyanti Purba
- Neri Riccardo
- Luca Bedogni
year: '2024'
doi: 10.1109/SEC62691.2024.00039
url: https://doi.org/10.1109/SEC62691.2024.00039
dblp_key: conf/ieeesec/PurbaRB24
venue_name: SEC
pages: 370-375
- title: 'HyperDrive: Scheduling Serverless Functions in the Edge-Cloud-Space 3D Continuum'
authors:
- Thomas W. Pusztai
- Cynthia Marcelino
- Stefan Nastic
year: '2024'
doi: 10.1109/SEC62691.2024.00028
url: https://doi.org/10.1109/SEC62691.2024.00028
dblp_key: conf/ieeesec/PusztaiMN24
venue_name: SEC
pages: 265-278
- title: Optimizing Edge Offloading Decisions for Object Detection
authors:
- Jiaming Qiu
- Ruiqi Wang
- Brooks Hu
- Roch Guérin
- Chenyang Lu 0001
year: '2024'
doi: 10.1109/SEC62691.2024.00021
url: https://doi.org/10.1109/SEC62691.2024.00021
dblp_key: conf/ieeesec/QiuWHG024
venue_name: SEC
pages: 164-177
- title: 'EcoEdgeInfer: Dynamically Optimizing Latency and Sustainability for Inference
on Edge Devices'
authors:
- Sri Pramodh Rachuri
- Nazeer Shaik
- Mehul Choksi
- Anshul Gandhi
year: '2024'
doi: 10.1109/SEC62691.2024.00023
url: https://doi.org/10.1109/SEC62691.2024.00023
dblp_key: conf/ieeesec/RachuriSCG24
venue_name: SEC
pages: 191-205
- title: 'Righteous: Automatic Right-Sizing for Complex Edge Deployments'
authors:
- Aniruddha Rakshit
- Salil Reddy
- Rajiv Ramnath
- Anish Arora
- Jayson Boubin
year: '2024'
doi: 10.1109/SEC62691.2024.00010
url: https://doi.org/10.1109/SEC62691.2024.00010
dblp_key: conf/ieeesec/RakshitRRAB24
venue_name: SEC
pages: 15-28
- title: Exploring Human and Artificial Attention Mechanisms in Driving Scenarios
authors:
- Martin Rechberger
- Daniel Kraus
- Peter Priller
- Olga Saukh
year: '2024'
doi: 10.1109/SEC62691.2024.00038
url: https://doi.org/10.1109/SEC62691.2024.00038
dblp_key: conf/ieeesec/RechbergerKPS24
venue_name: SEC
pages: 364-369
- title: Towards a Distributed Data Mesh Model for the IoT-Edge-Cloud Continuum in
Smart Cities
authors:
- Enrico Rossini
- Nicola Bicocchi
- Natalia Selini Hadjidimitriou
- Marcello Pietri
- Marco Picone
- Marco Mamei
year: '2024'
doi: 10.1109/SEC62691.2024.00041
url: https://doi.org/10.1109/SEC62691.2024.00041
dblp_key: conf/ieeesec/RossiniBHPPM24
venue_name: SEC
pages: 383-388
- title: 'Tiny, Distributed, and Eco-Optimized: Proposal of Design Guidelines for
Environmentally Friendly ML Devices'
authors:
- David J. Cuartielles Ruiz
- Attila Géczy
- Vincent Grennerat
- Pascal Xavier
year: '2024'
doi: 10.1109/SEC62691.2024.00050
url: https://doi.org/10.1109/SEC62691.2024.00050
dblp_key: conf/ieeesec/RuizGGX24
venue_name: SEC
pages: 443-448
- title: Enabling Accurate and Timely Prognostics for Aircraft Turbofan Engines
authors:
- Philippa Scroggins
- Sidi Lu
year: '2024'
doi: 10.1109/SEC62691.2024.00040
url: https://doi.org/10.1109/SEC62691.2024.00040
dblp_key: conf/ieeesec/ScrogginsL24
venue_name: SEC
pages: 376-382
- title: An Accurate and Efficient Clustered Federated Learning for Mobile Edge Devices
authors:
- Sudipta Saha Shubha
- Haiying Shen
year: '2024'
doi: 10.1109/SEC62691.2024.00017
url: https://doi.org/10.1109/SEC62691.2024.00017
dblp_key: conf/ieeesec/ShubhaS24
venue_name: SEC
pages: 110-122
- title: 'OVIDA: Orchestrator for Video Analytics on Disaggregated Architecture'
authors:
- Manavjeet Singh
- Sri Pramodh Rachuri
- Bryan Bo Cao
- Abhinav Sharma
- Venkata Bhumireddy
- Francesco Bronzino
- Samir R. Das
- Anshul Gandhi
- Shubham Jain 0003
year: '2024'
doi: 10.1109/SEC62691.2024.00019
url: https://doi.org/10.1109/SEC62691.2024.00019
dblp_key: conf/ieeesec/SinghRCSBBDGJ24
venue_name: SEC
pages: 135-148
- title: A Comparison Between Classical and Quantum Machine Learning for Mobile App
Traffic Classification
authors:
- Vincenzo Spadari
- Idio Guarino
- Domenico Ciuonzo
- Antonio Pescapè
year: '2024'
doi: 10.1109/SEC62691.2024.00053
url: https://doi.org/10.1109/SEC62691.2024.00053
dblp_key: conf/ieeesec/SpadariGCP24
venue_name: SEC
pages: 461-467
- title: Stress-Testing USB Accelerators for Efficient Edge Inference
authors:
- Alexander Van Der Staay
- Raphael Fischer 0001
- Sebastian Buschjäger
year: '2024'
doi: 10.1109/SEC62691.2024.00015
url: https://doi.org/10.1109/SEC62691.2024.00015
dblp_key: conf/ieeesec/Staay0B24
venue_name: SEC
pages: 1-14
- title: 'Beyond Federated Learning: Survival-Critical Machine Learning'
authors:
- Eric Sturzinger
- Mahadev Satyanarayanan
year: '2024'
doi: 10.1109/SEC62691.2024.00056
url: https://doi.org/10.1109/SEC62691.2024.00056
dblp_key: conf/ieeesec/SturzingerS24
venue_name: SEC
pages: 483-489
- title: 'FusedInf: Efficient Swapping of DNN Models for On-Demand Serverless Inference
Services on the Edge'
authors:
- Sifat Ut Taki
- Arthi Padmanabhan
- Spyridon Mastorakis
year: '2024'
doi: 10.1109/SEC62691.2024.00016
url: https://doi.org/10.1109/SEC62691.2024.00016
dblp_key: conf/ieeesec/TakiPM24
venue_name: SEC
pages: 98-109
- title: 'Poster: Implementing Data Reduction at the Middle Point on the Computing
Continuum'
authors:
- Yusuke Tanimura
year: '2024'
doi: 10.1109/SEC62691.2024.00069
url: https://doi.org/10.1109/SEC62691.2024.00069
dblp_key: conf/ieeesec/Tanimura24
venue_name: SEC
pages: 531-532
- title: 'Demo: Spiderweb - Reliability of AI on the Edge, Effects of Hardware Disturbances
on Machine Learning Software'
authors:
- Jens Vankeirsbilck
- Jeroen Boydens
year: '2024'
doi: 10.1109/SEC62691.2024.00063
url: https://doi.org/10.1109/SEC62691.2024.00063
dblp_key: conf/ieeesec/VankeirsbilckB24
venue_name: SEC
pages: 515-517
- title: 'Poster: LiDAR Utilisation for Enhanced Vehicle Capabilities'
authors:
- Aleksi Vuorinen
- Ella Peltonen
year: '2024'
doi: 10.1109/SEC62691.2024.00071
url: https://doi.org/10.1109/SEC62691.2024.00071
dblp_key: conf/ieeesec/VuorinenP24
venue_name: SEC
pages: 536-538
- title: Intent-Driven Data Falsification Attack on Collaborative IoT-Edge Environments
authors:
- Shima Yousefi
- Shameek Bhattacharjee
- Saptarshi Debroy
year: '2024'
doi: 10.1109/SEC62691.2024.00047
url: https://doi.org/10.1109/SEC62691.2024.00047
dblp_key: conf/ieeesec/YousefiBD24
venue_name: SEC
pages: 425-430
- title: Privacy Protection in WiFi Sensing via CSI Fuzzing
authors:
- Tianyang Zhang
- Bozhong Yu
- Yaxiong Xie
- Huanle Zhang
year: '2024'
doi: 10.1109/SEC62691.2024.00045
url: https://doi.org/10.1109/SEC62691.2024.00045
dblp_key: conf/ieeesec/ZhangYXZ24
venue_name: SEC
pages: 410-416
- title: IEEE/ACM Symposium on Edge Computing, SEC 2024, Rome, Italy, December 4-7,
2024
authors: []
year: '2024'
doi: 10.1109/SEC62691.2024
url: https://doi.org/10.1109/SEC62691.2024
dblp_key: conf/ieeesec/2024
venue_name: SEC
pages: null

View File

@@ -0,0 +1,56 @@
venue: SEC
year: 2024
papers:
- title: 'EdgeCore: Resource Dependency-Aware Multi-Tenant Orchestration for Mobile
Edge Clouds'
authors:
- Amran Haroon
reason: "Introduces a multi-tenant edge orchestration system that captures resource dependencies across co-located workloads, demonstrating significant improvements in task completion latency and resource utilization."
- title: 'Righteous: Automatic Right-Sizing for Complex Edge Deployments'
authors:
- Aniruddha Rakshit
reason: "Presents an automated right-sizing framework for edge deployments that dynamically adjusts resource allocations to match workload demands without manual intervention."
- title: 'Colibri: Efficient Collection of Fine-Grained Resource Metrics Necessary
for Mobile Edge Computing'
authors:
- Ke-Jou Hsu
reason: "Proposes a low-overhead monitoring system for collecting fine-grained resource metrics at the edge, enabling more accurate profiling for MEC scheduling decisions."
- title: 'HyperDrive: Scheduling Serverless Functions in the Edge-Cloud-Space 3D Continuum'
authors:
- Thomas W. Pusztai
reason: "Extends serverless scheduling across a three-dimensional edge-cloud-space continuum, addressing latency and resource constraints introduced by satellite and terrestrial tiers."
- title: 'Falcon: Live Reconfiguration for Stateful Stream Processing on the Edge'
authors:
- Pritish Mishra
reason: "Enables live, low-disruption reconfiguration of stateful stream processing pipelines at the edge, minimizing downtime during topology changes."
- title: 'FusedInf: Efficient Swapping of DNN Models for On-Demand Serverless Inference
Services on the Edge'
authors:
- Sifat Ut Taki
reason: "Reduces cold-start latency for serverless DNN inference at the edge by fusing model loading with active inference through selective layer swapping."
- title: 'EcoEdgeInfer: Dynamically Optimizing Latency and Sustainability for Inference
on Edge Devices'
authors:
- Sri Pramodh Rachuri
reason: "Co-optimizes inference latency and energy sustainability on edge devices by dynamically trading off accuracy and hardware utilization under carbon-aware constraints."
- title: Elastic Execution of Multi-Tenant DNNs on Heterogeneous Edge MPSoCs
authors:
- Soroush Heidari
reason: "Demonstrates elastic, interference-aware co-execution of multiple DNNs across heterogeneous processing elements in edge MPSoCs to maximize throughput and fairness."
- title: Optimizing Edge Offloading Decisions for Object Detection
authors:
- Jiaming Qiu
reason: "Formulates and solves an online offloading decision problem for object detection that jointly minimizes latency and energy consumption under variable network conditions."
- title: 'VideoJam: Self-Balancing Architecture for Live Video Analytics'
authors:
- Youssouph Faye
reason: "Proposes a self-balancing edge architecture for live video analytics that dynamically redistributes pipeline stages to prevent bottlenecks under fluctuating camera workloads."
- title: 'OVIDA: Orchestrator for Video Analytics on Disaggregated Architecture'
authors:
- Manavjeet Singh
reason: "Designs an orchestration layer for disaggregated edge hardware that places and migrates video analytics microservices to exploit spatial locality and heterogeneous accelerators."
- title: 'TA-ASF: Attention-Sensitive Token Sampling and Fusing for Visual Transformer
Models on the Edge'
authors:
- Junquan Chen
reason: "Accelerates Vision Transformer inference at the edge by pruning and fusing attention tokens based on saliency, achieving accuracy-efficiency trade-offs suitable for resource-constrained devices."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,57 @@
venue: SEC
year: 2025
papers:
- title: 'lm-Meter: Unveiling Runtime Inference Latency for On-Device Language Models'
authors:
- Haoxin Wang 0003
reason: "Provides the first detailed runtime profiling framework for on-device LLM inference, revealing key latency bottlenecks across diverse edge hardware configurations."
- title: 'SLED: A Speculative LLM Decoding Framework for Efficient Edge Serving'
authors:
- Xiangchen Li
reason: "Adapts speculative decoding to edge serving constraints, reducing LLM token generation latency while respecting the tight memory and compute budgets of edge nodes."
- title: 'SledgeScale: Load-Aware Dispatch and Deadline-Driven Scheduling for Scalable,
Dense Serverless Computing in Edge Data Centers'
authors:
- Xiaosu Lyu
reason: "Introduces a load-aware dispatch and deadline-driven scheduler for dense serverless edge data centers, demonstrating substantial SLA compliance improvements over baseline policies."
- title: 'Warping the Edge: Enabling Instant Mobility for Stateful Applications over
5G and Beyond'
authors:
- Mukhtiar Ahmad
reason: "Achieves near-instantaneous stateful application migration across 5G edge nodes by combining memory snapshotting with network-layer forwarding continuity."
- title: Uncertainty-Aware RL-Based Scheduling of Multi-DNN Workloads on Edge MPSoCs
authors:
- Soroush Heidari
reason: "Uses uncertainty-aware reinforcement learning to schedule concurrent DNN workloads on heterogeneous edge MPSoCs, reducing deadline misses under dynamic arrival patterns."
- title: 'SEEB-GPU: Early-Exit Aware Scheduling and Batching for Edge GPU Inference'
authors:
- Srinivasan Subramaniyan
reason: "Exploits early-exit branching in DNN inference to build an adaptive batching and scheduling policy for edge GPUs that cuts average latency without sacrificing throughput."
- title: 'Elastoformer: Enabling Dynamic Adaptivity via Elastic Model Transformation'
authors:
- Sudaksh Kalra
reason: "Proposes elastic transformer transformations that resize model capacity at runtime to match available edge resources, enabling continuous inference under fluctuating conditions."
- title: 'PlatformX: An End-to-End Transferable Platform for Energy-Efficient Neural
Architecture Search'
authors:
- Xiaolong Tu
reason: "Presents a transferable NAS platform that searches for energy-efficient DNN architectures deployable across heterogeneous edge targets with minimal re-search overhead."
- title: 'Bayes-Split-Edge: Bayesian Optimization for Constrained Collaborative Inference
in Wireless Edge Systems'
authors:
- Fatemeh Zahra Safaeipour
reason: "Applies Bayesian optimization to find optimal split points for collaborative inference in wireless edge systems, accounting for dynamic channel and computation constraints."
- title: Energy-efficient DNN Dividing Technique for Latency Optimization in Dynamic
Mobile Edge Networks
authors:
- Eldiyar Zhantileuov
reason: "Develops a DNN partitioning strategy for mobile edge networks that minimizes end-to-end latency while satisfying energy budgets under time-varying link conditions."
- title: LLM-Driven Auto Configuration for Transient IoT Device Collaboration
authors:
- Hetvi Shastri
reason: "Leverages LLMs to automate the configuration of transient IoT device coalitions, reducing manual setup overhead and adapting collaboration policies to changing device membership."
- title: 'fReeLoaders: An IoT Ecosystem for Real-Time Deadline-Driven Task Scheduling
using Reinforcement Learning'
authors:
- Marshall Clyburn
reason: "Builds a reinforcement-learning scheduler for IoT ecosystems that meets real-time task deadlines by exploiting opportunistic idle capacity across heterogeneous edge devices."

View File

@@ -0,0 +1,660 @@
venue: SOSP
year: 2024
source: dblp
count: 44
papers:
- title: 'Verus: A Practical Foundation for Systems Verification'
authors:
- Andrea Lattuada 0001
- Travis Hance
- Jay Bosamiya
- Matthias Brun 0002
- Chanhee Cho
- Hayley LeBlanc
- Pranav Srinivasan
- Reto Achermann
- Tej Chajed
- Chris Hawblitzel
- Jon Howell
- Jacob R. Lorch
- Oded Padon
- Bryan Parno
year: '2024'
doi: 10.1145/3694715.3695952
url: https://doi.org/10.1145/3694715.3695952
dblp_key: conf/sosp/0001HB0CLSACHHL24
venue_name: SOSP
pages: 438-454
- title: 'Sesame: Practical End-to-End Privacy Compliance with Policy Containers and
Privacy Regions'
authors:
- Kinan Dak Albab
- Artem Agvanian
- Allen Aby
- Corinn Tiffany
- Alexander Portland
- Sarah Ridley
- Malte Schwarzkopf
year: '2024'
doi: 10.1145/3694715.3695984
url: https://doi.org/10.1145/3694715.3695984
dblp_key: conf/sosp/AlbabAATPRS24
venue_name: SOSP
pages: 709-725
- title: 'Modular Verification of Secure and Leakage-Free Systems: From Application
Specification to Circuit-Level Implementation'
authors:
- Anish Athalye
- Henry Corrigan-Gibbs
- M. Frans Kaashoek
- Joseph Tassarotti
- Nickolai Zeldovich
year: '2024'
doi: 10.1145/3694715.3695956
url: https://doi.org/10.1145/3694715.3695956
dblp_key: conf/sosp/AthalyeCKTZ24
venue_name: SOSP
pages: 655-672
- title: Practical Verification of System-Software Components Written in Standard
C
authors:
- Can Cebeci
- Yong-Hao Zou
- Diyu Zhou
- George Candea
- Clément Pit-Claudel
year: '2024'
doi: 10.1145/3694715.3695980
url: https://doi.org/10.1145/3694715.3695980
dblp_key: conf/sosp/CebeciZZCP24
venue_name: SOSP
pages: 455-472
- title: Reducing Energy Bloat in Large Model Training
authors:
- Jae-Won Chung
- Yile Gu
- Insu Jang
- Luoxi Meng
- Nikhil Bansal 0001
- Mosharaf Chowdhury
year: '2024'
doi: 10.1145/3694715.3695970
url: https://doi.org/10.1145/3694715.3695970
dblp_key: conf/sosp/ChungGJM0C24
venue_name: SOSP
pages: 144-159
- title: 'Dirigent: Lightweight Serverless Orchestration'
authors:
- Lazar Cvetkovic
- François Costa
- Mihajlo Djokic
- Michal Friedman 0001
- Ana Klimovic
year: '2024'
doi: 10.1145/3694715.3695966
url: https://doi.org/10.1145/3694715.3695966
dblp_key: conf/sosp/CvetkovicCD0K24
venue_name: SOSP
pages: 369-384
- title: 'Apparate: Rethinking Early Exits to Tame Latency-Throughput Tensions in
ML Serving'
authors:
- Yinwei Dai
- Rui Pan 0003
- Anand P. Iyer
- Kai Li 0001
- Ravi Netravali
year: '2024'
doi: 10.1145/3694715.3695963
url: https://doi.org/10.1145/3694715.3695963
dblp_key: conf/sosp/DaiPILN24
venue_name: SOSP
pages: 607-623
- title: 'NOPE: Strengthening domain authentication with succinct proofs'
authors:
- Zachary DeStefano
- Jeff J. Ma
- Joseph Bonneau
- Michael Walfish
year: '2024'
doi: 10.1145/3694715.3695962
url: https://doi.org/10.1145/3694715.3695962
dblp_key: conf/sosp/DeStefanoMBW24
venue_name: SOSP
pages: 673-692
- title: DNS Congestion Control in Adversarial Settings
authors:
- Huayi Duan
- Jihye Kim 0008
- Marc Wyss
- Adrian Perrig
year: '2024'
doi: 10.1145/3694715.3695982
url: https://doi.org/10.1145/3694715.3695982
dblp_key: conf/sosp/DuanKWP24
venue_name: SOSP
pages: 726-747
- title: Fast, Flexible, and Practical Kernel Extensions
authors:
- Kumar Kartikeya Dwivedi
- Rishabh R. Iyer
- Sanidhya Kashyap
year: '2024'
doi: 10.1145/3694715.3695950
url: https://doi.org/10.1145/3694715.3695950
dblp_key: conf/sosp/DwivediIK24
venue_name: SOSP
pages: 249-264
- title: 'ReCycle: Resilient Training of Large DNNs using Pipeline Adaptation'
authors:
- Swapnil Gandhi
- Mark Zhao
- Athinagoras Skiadopoulos
- Christos Kozyrakis
year: '2024'
doi: 10.1145/3694715.3695960
url: https://doi.org/10.1145/3694715.3695960
dblp_key: conf/sosp/GandhiZSK24
venue_name: SOSP
pages: 211-228
- title: Enabling Parallelism Hot Switching for Efficient Training of Large Language
Models
authors:
- Hao Ge
- Fangcheng Fu
- Haoyang Li 0017
- Xuanyu Wang
- Sheng Lin
- Yujie Wang
- Xiaonan Nie
- Hailin Zhang 0004
- Xupeng Miao
- Bin Cui 0001
year: '2024'
doi: 10.1145/3694715.3695969
url: https://doi.org/10.1145/3694715.3695969
dblp_key: conf/sosp/GeFLWLWN0M024
venue_name: SOSP
pages: 178-194
- title: 'Autobahn: Seamless high speed BFT'
authors:
- Neil Giridharan
- Florian Suri-Payer
- Ittai Abraham
- Lorenzo Alvisi
- Natacha Crooks
year: '2024'
doi: 10.1145/3694715.3695942
url: https://doi.org/10.1145/3694715.3695942
dblp_key: conf/sosp/GiridharanSAAC24
venue_name: SOSP
pages: 1-23
- title: 'Caribou: Fine-Grained Geospatial Shifting of Serverless Applications for
Sustainability'
authors:
- Viktor Urban Gsteiger
- Pin Hong (Daniel) Long
- Yiran (Jerry) Sun
- Parshan Javanrood
- Mohammad Shahrad
year: '2024'
doi: 10.1145/3694715.3695954
url: https://doi.org/10.1145/3694715.3695954
dblp_key: conf/sosp/GsteigerLSJS24
venue_name: SOSP
pages: 403-420
- title: 'VPRI: Efficient I/O Page Fault Handling via Software-Hardware Co-Design
for IaaS Clouds'
authors:
- Kaijie Guo
- Dingji Li
- Ben Luo
- Yibin Shen
- Kaihuan Peng
- Ning Luo 0003
- Shengdong Dai
- Chen Liang
- Jianming Song
- Hang Yang
- Xiantao Zhang
- Zeyu Mi
year: '2024'
doi: 10.1145/3694715.3695957
url: https://doi.org/10.1145/3694715.3695957
dblp_key: conf/sosp/GuoLLSPLDLSYZM24
venue_name: SOSP
pages: 541-557
- title: 'Aceso: Achieving Efficient Fault Tolerance in Memory-Disaggregated Key-Value
Stores'
authors:
- Zhisheng Hu
- Pengfei Zuo
- Yizou Chen
- Chao Wang 0125
- Junliang Hu
- Ming-Chang Yang
year: '2024'
doi: 10.1145/3694715.3695951
url: https://doi.org/10.1145/3694715.3695951
dblp_key: conf/sosp/HuZCWHY24
venue_name: SOSP
pages: 127-143
- title: 'TrEnv: Transparently Share Serverless Execution Environments Across Different
Functions and Nodes'
authors:
- Jialiang Huang
- Mingxing Zhang
- Teng Ma 0006
- Zheng Liu
- Sixing Lin
- Kang Chen
- Jinlei Jiang
- Xia Liao
- Yingdi Shan
- Ning Zhang
- Mengting Lu
- Tao Ma 0006
- Haifeng Gong
- YongWei Wu 0001
year: '2024'
doi: 10.1145/3694715.3695967
url: https://doi.org/10.1145/3694715.3695967
dblp_key: conf/sosp/HuangZMLLCJLSZL24
venue_name: SOSP
pages: 421-437
- title: Improving DNN Inference Throughput Using Practical, Per-Input Compute Adaptation
authors:
- Anand Padmanabha Iyer
- Mingyu Guan
- Yinwei Dai
- Rui Pan 0003
- Swapnil Gandhi
- Ravi Netravali
year: '2024'
doi: 10.1145/3694715.3695978
url: https://doi.org/10.1145/3694715.3695978
dblp_key: conf/sosp/IyerGDPGN24
venue_name: SOSP
pages: 624-639
- title: 'OZZ: Identifying Kernel Out-of-Order Concurrency Bugs with In-Vivo Memory
Access Reordering'
authors:
- Dae R. Jeong
- Yewon Choi
- Byoungyoung Lee
- Insik Shin
- Youngjin Kwon
year: '2024'
doi: 10.1145/3694715.3695944
url: https://doi.org/10.1145/3694715.3695944
dblp_key: conf/sosp/JeongCLSK24
venue_name: SOSP
pages: 229-248
- title: 'Skyloft: A General High-Efficient Scheduling Framework in User Space'
authors:
- Yuekai Jia
- Kaifu Tian
- Yuyang You
- Yu Chen 0004
- Kang Chen
year: '2024'
doi: 10.1145/3694715.3695973
url: https://doi.org/10.1145/3694715.3695973
dblp_key: conf/sosp/JiaTY0C24
venue_name: SOSP
pages: 265-279
- title: 'Morph: Efficient File-Lifetime Redundancy Management for Cluster File Systems'
authors:
- Timothy Kim
- Sanjith Athlur
- Saurabh Kadekodi
- Francisco Maturana
- Dax Delvira
- Arif Merchant
- Gregory R. Ganger
- K. V. Rashmi
year: '2024'
doi: 10.1145/3694715.3695981
url: https://doi.org/10.1145/3694715.3695981
dblp_key: conf/sosp/KimAKMDMGR24
venue_name: SOSP
pages: 330-346
- title: Fast Core Scheduling with Userspace Process Abstraction
authors:
- Jiazhen Lin
- Youmin Chen
- Shiwei Gao
- Youyou Lu
year: '2024'
doi: 10.1145/3694715.3695976
url: https://doi.org/10.1145/3694715.3695976
dblp_key: conf/sosp/LinCGL24
venue_name: SOSP
pages: 280-295
- title: Uncovering Nested Data Parallelism and Data Reuse in DNN Computation with
FractalTensor
authors:
- Siran Liu
- Chengxiang Qi
- Ying Cao
- Chao Yang 0002
- Weifang Hu
- Xuanhua Shi
- Fan Yang 0024
- Mao Yang 0004
year: '2024'
doi: 10.1145/3694715.3695961
url: https://doi.org/10.1145/3694715.3695961
dblp_key: conf/sosp/LiuQC0HS0Y24
venue_name: SOSP
pages: 160-177
- title: Scaling Deep Learning Computation over the Inter-Core Connected Intelligence
Processor with T10
authors:
- Yiqi Liu
- Yuqi Xue
- Yu Cheng
- Lingxiao Ma
- Ziming Miao
- Jilong Xue
- Jian Huang 0006
year: '2024'
doi: 10.1145/3694715.3695955
url: https://doi.org/10.1145/3694715.3695955
dblp_key: conf/sosp/LiuXCMMX024
venue_name: SOSP
pages: 505-521
- title: 'LazyLog: A New Shared Log Abstraction for Low-Latency Applications'
authors:
- Xuhao Luo
- Shreesha G. Bhat
- Jiyu Hu
- Ramnatthan Alagappan
- Aishwarya Ganesan
year: '2024'
doi: 10.1145/3694715.3695983
url: https://doi.org/10.1145/3694715.3695983
dblp_key: conf/sosp/LuoBHAG24
venue_name: SOSP
pages: 296-312
- title: 'CHIME: A Cache-Efficient and High-Performance Hybrid Index on Disaggregated
Memory'
authors:
- Xuchuan Luo
- Jiacheng Shen
- Pengfei Zuo
- Xin Wang 0002
- Michael R. Lyu
- Yangfan Zhou 0002
year: '2024'
doi: 10.1145/3694715.3695959
url: https://doi.org/10.1145/3694715.3695959
dblp_key: conf/sosp/LuoSZ0LZ24
venue_name: SOSP
pages: 110-126
- title: 'SWARM: Replicating Shared Disaggregated-Memory Data in No Time'
authors:
- Antoine Murat
- Clément Burgelin
- Athanasios Xygkis
- Igor Zablotchi
- Marcos Kawazoe Aguilera
- Rachid Guerraoui
year: '2024'
doi: 10.1145/3694715.3695945
url: https://doi.org/10.1145/3694715.3695945
dblp_key: conf/sosp/MuratBXZAG24
venue_name: SOSP
pages: 24-45
- title: Efficient Reproduction of Fault-Induced Failures in Distributed Systems with
Feedback-Driven Fault Injection
authors:
- Jia Pan
- Haoze Wu
- Tanakorn Leesatapornwongsa
- Suman Nath
- Peng Huang 0005
year: '2024'
doi: 10.1145/3694715.3695979
url: https://doi.org/10.1145/3694715.3695979
dblp_key: conf/sosp/PanWLN024
venue_name: SOSP
pages: 46-62
- title: Reducing Cross-Cloud/Region Costs with the Auto-Configuring MACARON Cache
authors:
- Hojin Park
- Ziyue Qiu
- Gregory R. Ganger
- George Amvrosiadis
year: '2024'
doi: 10.1145/3694715.3695972
url: https://doi.org/10.1145/3694715.3695972
dblp_key: conf/sosp/ParkQGA24
venue_name: SOSP
pages: 347-368
- title: 'SilvanForge: A Schedule-Guided Retargetable Compiler for Decision Tree Inference'
authors:
- Ashwin Prasad
- Sampath Rajendra
- Kaushik Rajan
- R. Govindarajan
- Uday Bondhugula
year: '2024'
doi: 10.1145/3694715.3695958
url: https://doi.org/10.1145/3694715.3695958
dblp_key: conf/sosp/PrasadRRGB24
venue_name: SOSP
pages: 488-504
- title: Unearthing Semantic Checks for Cloud Infrastructure-as-Code Programs
authors:
- Yiming Qiu 0001
- Patrick Tser Jern Kon
- Ryan Beckett
- Ang Chen 0001
year: '2024'
doi: 10.1145/3694715.3695974
url: https://doi.org/10.1145/3694715.3695974
dblp_key: conf/sosp/QiuKB024
venue_name: SOSP
pages: 574-589
- title: 'vSoC: Efficient Virtual System-on-Chip on Heterogeneous Hardware'
authors:
- Jiaxing Qiu
- Zijie Zhou
- Yang Li 0092
- Zhenhua Li 0001
- Feng Qian 0001
- Hao Lin 0005
- Di Gao
- Haitao Su
- Xin Miao
- Yunhao Liu 0001
- Tianyin Xu
year: '2024'
doi: 10.1145/3694715.3695946
url: https://doi.org/10.1145/3694715.3695946
dblp_key: conf/sosp/QiuZL00LGSMLX24
venue_name: SOSP
pages: 558-573
- title: Fast & Safe IO Memory Protection
authors:
- Benny Rubin
- Saksham Agarwal
- Qizhe Cai
- Rachit Agarwal 0001
year: '2024'
doi: 10.1145/3694715.3695943
url: https://doi.org/10.1145/3694715.3695943
dblp_key: conf/sosp/RubinAC024
venue_name: SOSP
pages: 95-109
- title: 'Icarus: Trustworthy Just-In-Time Compilers with Symbolic Meta-Execution'
authors:
- Naomi Smith
- Abhishek Sharma 0017
- John Renner
- David Thien
- Fraser Brown
- Hovav Shacham
- Ranjit Jhala
- Deian Stefan
year: '2024'
doi: 10.1145/3694715.3695949
url: https://doi.org/10.1145/3694715.3695949
dblp_key: conf/sosp/SmithSRTBSJS24
venue_name: SOSP
pages: 473-487
- title: 'PowerInfer: Fast Large Language Model Serving with a Consumer-grade GPU'
authors:
- Yixin Song
- Zeyu Mi
- Haotong Xie
- Haibo Chen 0001
year: '2024'
doi: 10.1145/3694715.3695964
url: https://doi.org/10.1145/3694715.3695964
dblp_key: conf/sosp/SongMX024
venue_name: SOSP
pages: 590-606
- title: If At First You Don't Succeed, Try, Try, Again...? Insights and LLM-informed
Tooling for Detecting Retry Bugs in Software Systems
authors:
- Bogdan Alexandru Stoica
- Utsav Sethi
- Yiming Su
- Cyrus Zhou
- Shan Lu 0001
- Jonathan Mace
- Madanlal Musuvathi
- Suman Nath
year: '2024'
doi: 10.1145/3694715.3695971
url: https://doi.org/10.1145/3694715.3695971
dblp_key: conf/sosp/StoicaSSZ0MMN24
venue_name: SOSP
pages: 63-78
- title: Unifying serverless and microservice workloads with SigmaOS
authors:
- Ariel Szekely
- Adam Belay
- Robert Morris 0005
- M. Frans Kaashoek
year: '2024'
doi: 10.1145/3694715.3695947
url: https://doi.org/10.1145/3694715.3695947
dblp_key: conf/sosp/SzekelyBMK24
venue_name: SOSP
pages: 385-402
- title: 'Cookie Monster: Efficient On-Device Budgeting for Differentially-Private
Ad-Measurement Systems'
authors:
- Pierre Tholoniat
- Kelly Kostopoulou
- Peter McNeely
- Prabhpreet Singh Sodhi
- Anirudh Varanasi
- Benjamin Case
- Asaf Cidon
- Roxana Geambasu
- Mathias Lécuyer
year: '2024'
doi: 10.1145/3694715.3695965
url: https://doi.org/10.1145/3694715.3695965
dblp_key: conf/sosp/TholoniatKMSVCC24
venue_name: SOSP
pages: 693-708
- title: 'Tiered Memory Management: Access Latency is the Key!'
authors:
- Midhul Vuppalapati
- Rachit Agarwal 0001
year: '2024'
doi: 10.1145/3694715.3695968
url: https://doi.org/10.1145/3694715.3695968
dblp_key: conf/sosp/Vuppalapati024
venue_name: SOSP
pages: 79-94
- title: 'Tenplex: Dynamic Parallelism for Deep Learning using Parallelizable Tensor
Collections'
authors:
- Marcel Wagenländer
- Guo Li
- Bo Zhao 0019
- Luo Mai
- Peter R. Pietzuch
year: '2024'
doi: 10.1145/3694715.3695975
url: https://doi.org/10.1145/3694715.3695975
dblp_key: conf/sosp/WagenlanderL0MP24
venue_name: SOSP
pages: 195-210
- title: 'LoongServe: Efficiently Serving Long-Context Large Language Models with
Elastic Sequence Parallelism'
authors:
- Bingyang Wu
- Shengyu Liu
- Yinmin Zhong
- Peng Sun 0006
- Xuanzhe Liu
- Xin Jin 0008
year: '2024'
doi: 10.1145/3694715.3695948
url: https://doi.org/10.1145/3694715.3695948
dblp_key: conf/sosp/WuLZ0L024
venue_name: SOSP
pages: 640-654
- title: 'BIZA: Design of Self-Governing Block-Interface ZNS AFA for Endurance and
Performance'
authors:
- Shushu Yi
- Shaocong Sun
- Li Peng
- Yingbo Sun
- Ming-Chang Yang
- Zhichao Cao 0002
- Qiao Li 0001
- Myoungsoo Jung
- Ke Zhou 0001
- Jie Zhang 0048
year: '2024'
doi: 10.1145/3694715.3695953
url: https://doi.org/10.1145/3694715.3695953
dblp_key: conf/sosp/YiSPSYCLJZ024
venue_name: SOSP
pages: 313-329
- title: 'FBDetect: Catching Tiny Performance Regressions at Hyperscale through In-Production
Monitoring'
authors:
- Dong Young Yoon
- Yang Wang 0009
- Miao Yu 0023
- Elvis Huang
- Juan Ignacio Jones
- Abhinay Kukkadapu
- Osman Kocas
- Jonathan Wiepert
- Kapil Goenka
- Sherry Chen
- Yanjun Lin
- Zhihui Huang
- Jocelyn Kong
- Michael Chow
- Chunqiang Tang
year: '2024'
doi: 10.1145/3694715.3695977
url: https://doi.org/10.1145/3694715.3695977
dblp_key: conf/sosp/Yoon0YHJKKWGCLH24
venue_name: SOSP
pages: 522-540
- title: Proceedings of the ACM SIGOPS 30th Symposium on Operating Systems Principles,
SOSP 2024, Austin, TX, USA, November 4-6, 2024
authors:
- Emmett Witchel
- Christopher J. Rossbach
- Andrea C. Arpaci-Dusseau
- Kimberly Keeton
year: '2024'
doi: 10.1145/3694715
url: https://doi.org/10.1145/3694715
dblp_key: conf/sosp/2024
venue_name: SOSP
pages: null

View File

@@ -0,0 +1,70 @@
venue: SOSP
year: 2024
date: "2024-11-05"
tags: [operating-systems, distributed-systems, storage, cloud, formal-verification, ml-systems, security, serverless]
selected:
- dblp_key: "conf/sosp/0001HB0CLSACHHL24"
title: "Verus: A Practical Foundation for Systems Verification"
tldr: "Verus is a Rust-based verification framework that makes formal proofs of low-level systems code tractable at scale, covering memory safety, functional correctness, and concurrency."
why_notable: "Formal verification of real systems code has long been impractical; Verus closes the usability gap by integrating SMT-based proofs directly into a systems programming language, making it the most broadly applicable verification tool for the OS community to date."
- dblp_key: "conf/sosp/AthalyeCKTZ24"
title: "Modular Verification of Secure and Leakage-Free Systems: From Application Specification to Circuit-Level Implementation"
tldr: "A modular verification methodology lets developers prove end-to-end that a system leaks no sensitive information, bridging the gap from high-level spec all the way to circuit-level hardware behavior."
why_notable: "Side-channel leakage across abstraction layers is notoriously hard to reason about; this work provides a principled, mechanized framework to do so, setting a new bar for hardware-software co-verification of secure systems."
- dblp_key: "conf/sosp/GiridharanSAAC24"
title: "Autobahn: Seamless high speed BFT"
tldr: "Autobahn is a BFT consensus protocol that achieves high throughput under normal operation while seamlessly falling back to a slow path during faults, eliminating the throughput cliff common in prior BFT designs."
why_notable: "Byzantine fault-tolerant systems have historically traded peak performance for safety margins; Autobahn's seamless transition between fast and slow paths closes that gap and is likely to influence the next generation of production BFT deployments."
- dblp_key: "conf/sosp/DwivediIK24"
title: "Fast, Flexible, and Practical Kernel Extensions"
tldr: "A new kernel extension framework surpasses eBPF's safety and flexibility constraints by using a combination of ahead-of-time compilation and a lean verification layer, enabling complex kernel extensions with near-native performance."
why_notable: "eBPF has become ubiquitous for in-kernel programmability, but its verifier fundamentally limits expressiveness; this work re-examines those trade-offs and offers a path toward richer, safer kernel extensions with broad applicability to networking, tracing, and storage."
- dblp_key: "conf/sosp/Vuppalapati024"
title: "Tiered Memory Management: Access Latency is the Key!"
tldr: "A principled tiered-memory manager that tracks per-page access latency rather than access frequency achieves substantially better performance for modern workloads on heterogeneous DRAM/CXL/NVM memory hierarchies."
why_notable: "As CXL-attached memory becomes mainstream, frequency-based page migration policies inherited from NUMA systems are increasingly inadequate; this paper reframes the problem around latency and provides a practical, deployable design."
- dblp_key: "conf/sosp/RubinAC024"
title: "Fast & Safe IO Memory Protection"
tldr: "A hardware-software co-design eliminates the performance overhead of IOMMU-based DMA isolation by allowing safe, fine-grained IO memory protection without full page-table walks on the critical path."
why_notable: "DMA attacks remain a real threat yet IOMMU protection is widely disabled in production because of latency costs; this work makes protection affordable and is directly relevant to cloud, NIC, and storage subsystem designers."
- dblp_key: "conf/sosp/MuratBXZAG24"
title: "SWARM: Replicating Shared Disaggregated-Memory Data in No Time"
tldr: "SWARM replicates data in disaggregated-memory clusters with near-zero latency overhead by exploiting one-sided RDMA operations and a carefully designed protocol that avoids coordination on the read path."
why_notable: "Disaggregated memory is an emerging data-center architecture; providing fault tolerance without sacrificing its key latency advantage is an open problem, and SWARM's approach is both novel and practically relevant."
- dblp_key: "conf/sosp/KimAKMDMGR24"
title: "Morph: Efficient File-Lifetime Redundancy Management for Cluster File Systems"
tldr: "Morph dynamically transitions files through redundancy schemes (replication → erasure coding) based on observed file age and access patterns, substantially reducing storage overhead in large-scale cluster file systems."
why_notable: "Static redundancy policies waste significant capacity in practice; Morph's lifecycle-aware approach is validated at Google scale and provides a compelling template for storage systems serving diverse workloads."
- dblp_key: "conf/sosp/SongMX024"
title: "PowerInfer: Fast Large Language Model Serving with a Consumer-grade GPU"
tldr: "PowerInfer exploits the activation sparsity of LLMs to partition computation between a consumer GPU and CPU, achieving high inference throughput without data-center hardware."
why_notable: "Democratizing LLM inference beyond cloud hardware is a pressing systems challenge; PowerInfer's sparsity-aware approach delivers surprising performance on commodity hardware and has already influenced a wave of follow-on work."
- dblp_key: "conf/sosp/WuLZ0L024"
title: "LoongServe: Efficiently Serving Long-Context Large Language Models with Elastic Sequence Parallelism"
tldr: "LoongServe introduces elastic sequence parallelism that dynamically adjusts the number of workers handling each long-context request to minimize GPU idle time and satisfy latency SLOs."
why_notable: "Long-context inference strains fixed parallelism strategies, creating severe resource fragmentation; LoongServe's elasticity primitive addresses this gap and is directly applicable to production LLM serving infrastructure."
- dblp_key: "conf/sosp/SzekelyBMK24"
title: "Unifying serverless and microservice workloads with SigmaOS"
tldr: "SigmaOS is an OS-level abstraction that treats serverless functions and microservices as first-class, interchangeable computational units, simplifying resource management and improving utilization for mixed workloads."
why_notable: "The artificial split between serverless and microservice programming models imposes significant operational complexity; SigmaOS's unified abstraction from the MIT systems group offers a clean architectural answer with demonstrated performance gains."
- dblp_key: "conf/sosp/TholoniatKMSVCC24"
title: "Cookie Monster: Efficient On-Device Budgeting for Differentially-Private Ad-Measurement Systems"
tldr: "Cookie Monster implements practical on-device differential-privacy budget management for ad attribution, showing that strong privacy guarantees can be enforced locally without destroying ad-measurement utility."
why_notable: "Browser vendors are actively replacing third-party cookies with privacy-preserving attribution APIs; this paper provides rigorous analysis of the privacy-utility trade-off and offers deployable techniques relevant to both industry standards and future OS-level privacy primitives."
- dblp_key: "conf/sosp/PanWLN024"
title: "Efficient Reproduction of Fault-Induced Failures in Distributed Systems with Feedback-Driven Fault Injection"
tldr: "A feedback-guided fault injection framework automatically reproduces complex distributed-system failures triggered by rare fault combinations, dramatically reducing the manual effort needed to diagnose and fix them."
why_notable: "Fault-induced failures in distributed systems are notoriously hard to reproduce; the paper's closed-loop search strategy is a methodological advance for reliability testing and is likely to influence both academic research and industrial chaos-engineering tools."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,163 @@
venue: SOSP
year: 2025
papers:
- title: 'LithOS: An Operating System for Efficient Machine Learning on GPUs'
authors:
- Patrick H. Coppock
- Brian Zhang
- Eliot H. Solomon
- Vasilis Kypriotis
- Leon Yang
- Bikash Sharma
- Dan Schatzberg
- Todd C. Mowry
- Dimitrios Skarlatos 0002
reason: "Designs a dedicated OS for GPU ML workloads, rethinking scheduling and resource management at the kernel level for accelerator-centric computing."
- title: 'CHERIoT RTOS: An OS for Fine-Grained Memory-Safe Compartments on Low-Cost
Embedded Devices'
authors:
- Saar Amar
- Tony Chen
- David Chisnall
- Nathaniel Wesley Filardo
- Ben Laurie
- Hugo Lefeuvre
- Kunyan Liu
- Simon W. Moore
- Robert Norton-Wright
- Margo I. Seltzer
- Yucong Tao
- Robert N. M. Watson
- Hongyan Xia
reason: "Demonstrates hardware-capability-based fine-grained memory safety and compartmentalisation on constrained embedded devices, setting a new bar for secure IoT OSes."
- title: 'Atmosphere: Practical Verified Kernels with Rust and Verus'
authors:
- Xiangdong Chen
- Zhaofeng Li 0004
- Jerry Zhang
- Vikram Narayanan
- Anton Burtsev
reason: "Shows that practical kernel verification is achievable using Rust and the Verus verifier, bridging the gap between formal methods and production OS development."
- title: 'TickTock: Verified Isolation in a Production Embedded OS'
authors:
- Vivien Rindisbacher
- Evan Johnson 0001
- Nico Lehmann
- Tyler Potyondy
- Pat Pannuto
- Stefan Savage
- Deian Stefan
- Ranjit Jhala
reason: "Delivers machine-checked proofs of isolation properties for a real embedded OS, providing strong security guarantees without sacrificing production deployability."
- title: 'μFork: Supporting POSIX fork Within a Single-Address-Space OS'
authors:
- John Alistair Kressel
- Hugo Lefeuvre
- Pierre Olivier
reason: "Reconciles the POSIX fork abstraction with unikernel/single-address-space designs, addressing a long-standing compatibility obstacle for library OS deployments."
- title: Scalable Address Spaces using Concurrent Interval Skiplist
authors:
- Tae Woo Kim
- Youngjin Kwon
- Jeehoon Kang
reason: "Tackles the fundamental kernel scalability problem of virtual memory area management by replacing the VMA red-black tree with a concurrent interval skiplist, yielding significant mmap/munmap throughput gains."
- title: 'cache_ext: Customizing the Page Cache with eBPF'
authors:
- Tal Zussman
- Ioannis Zarkadas
- Jeremy Carin
- Andrew Cheng
- Hubertus Franke
- Jonas Pfefferle
- Asaf Cidon
reason: "Extends the eBPF programmability model to the OS page cache, enabling application-specific caching policies without kernel modifications."
- title: 'Aeolia: A Fast and Secure Userspace Interrupt-Based Storage Stack'
authors:
- Chuandong Li 0004
- Ran Yi 0004
- Zonghao Zhang
- Jing Liu 0074
- Changwoo Min
- Jie Zhang 0048
- Yingwei Luo
- Xiaolin Wang 0001
- Zhenlin Wang 0003
- Diyu Zhou
reason: "Redesigns the storage I/O path around userspace interrupts, achieving high throughput and low latency while preserving strong isolation properties."
- title: 'Sleeping with One Eye Open: Fast, Sustainable Storage with Sandman'
authors:
- Yanbo Zhou
- Erci Xu
- Anisa Su
- Jim Harris
- Adam Manzanares
- Steven Swanson
reason: "Introduces a storage system that aggressively power-gates flash devices while maintaining low latency, addressing sustainability concerns for large-scale storage deployments."
- title: 'Oasis: Pooling PCIe Devices Over CXL to Boost Utilization'
authors:
- Yuhong Zhong
- Daniel S. Berger
- Pantea Zardoshti
- Enrique Saurez
- Jacob Nelson 0001
- Dan R. K. Ports
- Antonis Psistakis
- Joshua Fried
- Asaf Cidon
reason: "Exploits CXL interconnects to pool PCIe devices across servers, significantly improving device utilisation and laying groundwork for memory-semantic datacenter architectures."
- title: 'Scalable Far Memory: Balancing Faults and Evictions'
authors:
- Yueyang Pan
- Yash Lala
- Musa Unal
- Yujie Ren
- SeungSeob Lee
- Abhishek Bhattacharjee
- Anurag Khandelwal
- Sanidhya Kashyap
reason: "Provides a rigorous analysis of the fault-vs-eviction trade-off in far-memory systems and proposes mechanisms that scale to production datacenter workloads."
- title: 'Tiga: Accelerating Geo-Distributed Transactions with Synchronized Clocks'
authors:
- Jinkun Geng
- Shuai Mu 0001
- Anirudh Sivaraman
- Balaji Prabhakar
reason: "Exploits hardware clock synchronisation to cut coordination overhead in geo-distributed transactions, achieving latency close to the theoretical network minimum."
- title: 'Pesto: Cooking up High Performance BFT Queries'
authors:
- Florian Suri-Payer
- Neil Giridharan
- Liam Arzola
- Shir Cohen
- Lorenzo Alvisi
- Natacha Crooks
reason: "Advances Byzantine fault-tolerant systems by separating the query path from consensus, enabling high-throughput reads without weakening safety guarantees."
- title: 'Orthrus: Efficient and Timely Detection of Silent User Data Corruption in
the Cloud with Resource-Adaptive Computation Validation'
authors:
- Chenxiao Liu
- Zhenting Zhu
- Quanxi Li
- Yanwen Xia
- Yifan Qiao 0002
- Xiangyun Deng
- Youyou Lu
- Tao Xie 0001
- Huimin Cui
- Zidong Du
- Harry Xu 0001
- Chenxi Wang 0005
reason: "Detects silent data corruption at cloud scale using resource-adaptive redundant computation, addressing a critical and hard-to-diagnose reliability threat in hyperscale infrastructure."

View File

@@ -0,0 +1,914 @@
venue: SoCC
year: 2024
source: dblp
count: 64
papers:
- title: 'SQLStateGuard: Statement-Level SQL Injection Defense Based on Learning-Driven
Middleware'
authors:
- Xin Liu 0050
- Yuanyuan Huang
- Tianyi Wang
- Song Li 0006
- Weina Niu
- Jun Shen 0001
- Qingguo Zhou
- Xiaokang Zhou
year: '2024'
doi: 10.1145/3698038.3698569
url: https://doi.org/10.1145/3698038.3698569
dblp_key: conf/cloud/0050HW0N0ZZ24
venue_name: SoCC
pages: 69-82
- title: 'Inshrinkerator: Compressing Deep Learning Training Checkpoints via Dynamic
Quantization'
authors:
- Amey Agrawal
- Sameer Reddy
- Satwik Bhattamishra
- Venkata Prabhakara Sarath Nookala
- Vidushi Vashishth
- Kexin Rong 0001
- Alexey Tumanov
year: '2024'
doi: 10.1145/3698038.3698553
url: https://doi.org/10.1145/3698038.3698553
dblp_key: conf/cloud/AgrawalRBNV0T24
venue_name: SoCC
pages: 1012-1031
- title: 'The Sunk Carbon Fallacy: Rethinking Carbon Footprint Metrics for Effective
Carbon-Aware Scheduling'
authors:
- Noman Bashir
- Varun Gohil
- Anagha Belavadi Subramanya
- Mohammad Shahrad
- David Irwin 0001
- Elsa Olivetti
- Christina Delimitrou
year: '2024'
doi: 10.1145/3698038.3698542
url: https://doi.org/10.1145/3698038.3698542
dblp_key: conf/cloud/BashirGSSIOD24
venue_name: SoCC
pages: 542-551
- title: 'Krios: Scheduling Abstractions and Mechanisms for Enabling a LEO Compute
Cloud'
authors:
- Vaibhav Bhosale
- Ada Gavrilovska
- Ketan Bhardwaj
year: '2024'
doi: 10.1145/3698038.3698566
url: https://doi.org/10.1145/3698038.3698566
dblp_key: conf/cloud/BhosaleGB24
venue_name: SoCC
pages: 322-340
- title: Securing a Multiprocessor KVM Hypervisor with Rust
authors:
- Yu-Hsun Chiang
- Wei-Lin Chang
- Shih-Wei Li
- Jan-Ting Tu
year: '2024'
doi: 10.1145/3698038.3698562
url: https://doi.org/10.1145/3698038.3698562
dblp_key: conf/cloud/ChiangCLT24
venue_name: SoCC
pages: 650-667
- title: 'Process-as-a-Service: Unifying Elastic and Stateful Clouds with Serverless
Processes'
authors:
- Marcin Copik
- Alexandru Calotoiu
- Gyorgy Réthy
- Roman Böhringer
- Rodrigo Bruno
- Torsten Hoefler
year: '2024'
doi: 10.1145/3698038.3698567
url: https://doi.org/10.1145/3698038.3698567
dblp_key: conf/cloud/CopikCRBBH24
venue_name: SoCC
pages: 223-242
- title: 'MoEsaic: Shared Mixture of Experts'
authors:
- Umesh Deshpande
- Travis Janssen
- Mudhakar Srivatsa
- Swaminathan Sundararaman
year: '2024'
doi: 10.1145/3698038.3698521
url: https://doi.org/10.1145/3698038.3698521
dblp_key: conf/cloud/DeshpandeJSS24
venue_name: SoCC
pages: 434-442
- title: 'Forecasting Algorithms for Intelligent Resource Scaling: An Experimental
Analysis'
authors:
- Yanlei Diao
- Dominik Horn
- Andreas Kipf
- Oleksandr Shchur
- Ines Benito
- Wenjian Dong
- Davide Pagano
- Pascal Pfeil
- Vikram Nathan
- Balakrishnan Narayanaswamy
- Tim Kraska
year: '2024'
doi: 10.1145/3698038.3698564
url: https://doi.org/10.1145/3698038.3698564
dblp_key: conf/cloud/DiaoHKSBDPPNNK24
venue_name: SoCC
pages: 126-143
- title: 'H2C-Dedup: Reducing I/O and GC Amplification for QLC SSDs from the Deduplication
Metadata Perspective'
authors:
- Yunsheng Dong
- Boju Chen
- Yanqi Pan
- Xiangyu Zou
- Wen Xia
year: '2024'
doi: 10.1145/3698038.3698507
url: https://doi.org/10.1145/3698038.3698507
dblp_key: conf/cloud/DongCPZX24
venue_name: SoCC
pages: 704-719
- title: Distributed Training of Large Language Models on AWS Trainium
authors:
- Xinwei Fu
- Zhen Zhang 0063
- Haozheng Fan
- Guangtai Huang
- Mohammad El-Shabani
- Randy Huang
- Rahul Solanki
- Fei Wu
- Ron Diamant
- Yida Wang 0003
year: '2024'
doi: 10.1145/3698038.3698535
url: https://doi.org/10.1145/3698038.3698535
dblp_key: conf/cloud/FuZFHEHSWD024
venue_name: SoCC
pages: 961-976
- title: Dynamic Idle Resource Leasing To Safely Oversubscribe Capacity At Meta
authors:
- Nishant Gupta
- Iyswarya Narayanan
- Shivam Handa
- Sayak Chakraborti
- Pankit Thapar
- Baohua Shan
- Ariel Rao
- Yuanlai Liu
- Pengyuan Wang
- Yuqing Wu
- Qingyi Gao
- Chris Chao-Chun Cheng
- Sihan You
- Louis Huang
- Jingyuan Fan
- Kenny Yu
- Kevin Lin
- Tengfei Mu
- Parth Malani
- Haiying Wang
- Trey Lu
- Peter Zhang
year: '2024'
doi: 10.1145/3698038.3698537
url: https://doi.org/10.1145/3698038.3698537
dblp_key: conf/cloud/GuptaNHCTSRLWWG24
venue_name: SoCC
pages: 792-810
- title: 'Byways: High-Performance, Isolated Network Functions for Multi-Tenant Cloud
Servers'
authors:
- Xinyu Han
- Yuan Gao 0041
- Gabriel Parmer
- Timothy Wood 0001
year: '2024'
doi: 10.1145/3698038.3698547
url: https://doi.org/10.1145/3698038.3698547
dblp_key: conf/cloud/HanGP024
venue_name: SoCC
pages: 811-829
- title: 'KACE: Kernel-Aware Colocation for Efficient GPU Spatial Sharing'
authors:
- Bing-Shiun Han
- Tathagata Paul
- Zhenhua Liu 0002
- Anshul Gandhi
year: '2024'
doi: 10.1145/3698038.3698555
url: https://doi.org/10.1145/3698038.3698555
dblp_key: conf/cloud/HanP0G24
venue_name: SoCC
pages: 460-469
- title: 'AutoBurst: Autoscaling Burstable Instances for Cost-effective Latency SLOs'
authors:
- Rubaba Hasan
- Timothy Zhu
- Bhuvan Urgaonkar
year: '2024'
doi: 10.1145/3698038.3698530
url: https://doi.org/10.1145/3698038.3698530
dblp_key: conf/cloud/HasanZU24
venue_name: SoCC
pages: 243-258
- title: 'INS: Identifying and Mitigating Performance Interference in Clouds via Interference-Sensitive
Paths'
authors:
- Ziwei Huang 0003
- Mengyao Xie
- Shibo Tang
- Zihao Chang
- Zhicheng Yao
- Yungang Bao
- Sa Wang
year: '2024'
doi: 10.1145/3698038.3698508
url: https://doi.org/10.1145/3698038.3698508
dblp_key: conf/cloud/HuangXTCYBW24
venue_name: SoCC
pages: 380-397
- title: 'Memory Management in Complex Join Queries: A Re-evaluation Study'
authors:
- Shiva Jahangiri
- Michael J. Carey 0001
- Johann-Christoph Freytag
year: '2024'
doi: 10.1145/3698038.3698565
url: https://doi.org/10.1145/3698038.3698565
dblp_key: conf/cloud/Jahangiri0F24
venue_name: SoCC
pages: 933-942
- title: 'SmartGraph: A Framework for Graph Processing in Computational Storage'
authors:
- Soheil Khadirsharbiyani
- Nima Elyasi
- Armin Haj Aboutalebi
- Chun-Yi Liu 0002
- Changho Choi
- Mahmut Taylan Kandemir
year: '2024'
doi: 10.1145/3698038.3698538
url: https://doi.org/10.1145/3698038.3698538
dblp_key: conf/cloud/Khadirsharbiyani24
venue_name: SoCC
pages: 737-754
- title: 'FedCaSe: Enhancing Federated Learning with Heterogeneity-aware Caching and
Scheduling'
authors:
- Redwan Ibne Seraj Khan
- Arnab K. Paul
- Yue Cheng 0001
- Xun Steve Jian
- Ali Raza Butt
year: '2024'
doi: 10.1145/3698038.3698559
url: https://doi.org/10.1145/3698038.3698559
dblp_key: conf/cloud/KhanP0JB24
venue_name: SoCC
pages: 52-68
- title: 'Zero-SAD: Zero-Shot Learning Using Synthetic Abnormal Data for Abnormal
Behavior Detection on Private Cloud'
authors:
- Jae-Seok Kim
- Joonho Seo
- SeonJin Hwang
- Jin-Myeong Shin
- Yoon-Ho Choi
year: '2024'
doi: 10.1145/3698038.3698533
url: https://doi.org/10.1145/3698038.3698533
dblp_key: conf/cloud/KimSHSC24
venue_name: SoCC
pages: 111-125
- title: Occam's Razor for Distributed Protocols
authors:
- Ziliang Lai
- Fan Cui
- Hua Fan 0002
- Eric Lo 0001
- Wenchao Zhou
- Feifei Li 0001
year: '2024'
doi: 10.1145/3698038.3698514
url: https://doi.org/10.1145/3698038.3698514
dblp_key: conf/cloud/LaiC00Z024
venue_name: SoCC
pages: 618-636
- title: 'Snapipeline: Accelerating Snapshot Startup for FaaS Containers'
authors:
- Yuqiao Lan
- Xiaohui Peng 0002
- Yifan Wang 0005
year: '2024'
doi: 10.1145/3698038.3698513
url: https://doi.org/10.1145/3698038.3698513
dblp_key: conf/cloud/LanPW24
venue_name: SoCC
pages: 144-159
- title: Streamlining Cloud-Native Application Development and Deployment with Robust
Encapsulation
authors:
- Pawissanutt Lertpongrujikorn
- Hai Duc Nguyen 0005
- Mohsen Amini Salehi
year: '2024'
doi: 10.1145/3698038.3698552
url: https://doi.org/10.1145/3698038.3698552
dblp_key: conf/cloud/Lertpongrujikorn24
venue_name: SoCC
pages: 847-865
- title: Near-Lossless Gradient Compression for Data-Parallel Distributed DNN Training
authors:
- Xue Li 0024
- Cheng Guo 0007
- Kun Qian 0004
- Menghao Zhang 0001
- Mengyu Yang
- Mingwei Xu 0001
year: '2024'
doi: 10.1145/3698038.3698541
url: https://doi.org/10.1145/3698038.3698541
dblp_key: conf/cloud/LiGQ0YX24
venue_name: SoCC
pages: 977-994
- title: Rethinking State Management in Actor Systems for Cloud-Native Applications
authors:
- Yijian Liu
- Rodrigo Laigner
- Yongluan Zhou
year: '2024'
doi: 10.1145/3698038.3698540
url: https://doi.org/10.1145/3698038.3698540
dblp_key: conf/cloud/LiuLZ24
venue_name: SoCC
pages: 898-914
- title: 'Kale: Elastic GPU Scheduling for Online DL Model Training'
authors:
- Ziyang Liu
- Renyu Yang
- Jin Ouyang
- Weihan Jiang
- Tianyu Ye
- Menghao Zhang 0001
- Sui Huang
- Jiaming Huang
- Chengru Song
- Di Zhang 0026
- Tianyu Wo
- Chunming Hu
year: '2024'
doi: 10.1145/3698038.3698532
url: https://doi.org/10.1145/3698038.3698532
dblp_key: conf/cloud/LiuYOJY0HHSZWH24
venue_name: SoCC
pages: 36-51
- title: 'ByteMQ: A Cloud-native Streaming Data Layer in ByteDance'
authors:
- Yancan Mao
- Ruohang Yin
- Liyuan Lei
- Peng Ye
- Shengfu Zou
- Shizheng Tang
- Yunzhe Guo
- Ye Yuan
- Xiaochen Yu
- Bo Wan 0004
- Yunfei Gong
- Changli Gao
- Guanghui Zhang
- Jian Shen
- Rui Shi
- Richard T. B. Ma
year: '2024'
doi: 10.1145/3698038.3698536
url: https://doi.org/10.1145/3698038.3698536
dblp_key: conf/cloud/MaoYLYZTGYYWGGZ24
venue_name: SoCC
pages: 774-791
- title: 'uIO: Lightweight and Extensible Unikernels'
authors:
- Masanori Misono
- Peter Okelmann
- Charalampos Mainas
- Pramod Bhatotia
year: '2024'
doi: 10.1145/3698038.3698518
url: https://doi.org/10.1145/3698038.3698518
dblp_key: conf/cloud/MisonoOMB24
venue_name: SoCC
pages: 580-599
- title: 'FAAStloop: Optimizing Loop-Based Applications for Serverless Computing'
authors:
- Shruti Mohanty
- Vivek M. Bhasi
- Myungjun Son
- Mahmut Taylan Kandemir
- Chita R. Das
year: '2024'
doi: 10.1145/3698038.3698560
url: https://doi.org/10.1145/3698038.3698560
dblp_key: conf/cloud/MohantyBSKD24
venue_name: SoCC
pages: 943-960
- title: 'CDN-Shifter: Leveraging Spatial Workload Shifting to Decarbonize Content
Delivery Networks'
authors:
- Jorge Murillo
- Walid A. Hanafy
- David Irwin 0001
- Ramesh K. Sitaraman
- Prashant J. Shenoy
year: '2024'
doi: 10.1145/3698038.3698516
url: https://doi.org/10.1145/3698038.3698516
dblp_key: conf/cloud/MurilloHISS24
venue_name: SoCC
pages: 505-521
- title: Towards Swap-Free, Continuous Ballooning for Fast, Cloud-Based Virtual Machine
Migrations
authors:
- Kevin Alarcón Negy
- Tycho Nightingale
- Hakim Weatherspoon
- Zhiming Shen
year: '2024'
doi: 10.1145/3698038.3698543
url: https://doi.org/10.1145/3698038.3698543
dblp_key: conf/cloud/NegyNWS24
venue_name: SoCC
pages: 269-283
- title: 'TailClipper: Reducing Tail Response Time of Distributed Services Through
System-Wide Scheduling'
authors:
- Nathan Ng 0002
- Abel Souza
- Ahmed Ali-Eldin
- David Irwin 0001
- Don Towsley
- Prashant J. Shenoy
year: '2024'
doi: 10.1145/3698038.3698554
url: https://doi.org/10.1145/3698038.3698554
dblp_key: conf/cloud/NgSAITS24
venue_name: SoCC
pages: 398-414
- title: 'SURE: Secure Unikernels Make Serverless Computing Rapid and Efficient'
authors:
- Federico Parola
- Shixiong Qi
- Anvaya B. Narappa
- K. K. Ramakrishnan
- Fulvio Risso
year: '2024'
doi: 10.1145/3698038.3698558
url: https://doi.org/10.1145/3698038.3698558
dblp_key: conf/cloud/ParolaQNRR24
venue_name: SoCC
pages: 668-688
- title: Queue Management for SLO-Oriented Large Language Model Serving
authors:
- Archit Patke
- Dhemath Reddy
- Saurabh Jha
- Haoran Qiu
- Christian Pinto
- Chandra Narayanaswami
- Zbigniew Kalbarczyk
- Ravishankar K. Iyer
year: '2024'
doi: 10.1145/3698038.3698523
url: https://doi.org/10.1145/3698038.3698523
dblp_key: conf/cloud/PatkeRJQPNKI24
venue_name: SoCC
pages: 18-35
- title: 'InferCool: Enhancing AI Inference Cooling through Transparent, Non-Intrusive
Task Reassignment'
authors:
- Qiangyu Pei
- Lin Wang 0015
- Dong Zhang
- Bingheng Yan
- Chen Yu 0003
- Fangming Liu
year: '2024'
doi: 10.1145/3698038.3698556
url: https://doi.org/10.1145/3698038.3698556
dblp_key: conf/cloud/PeiWZY0L24
venue_name: SoCC
pages: 487-504
- title: Accelerating Transfer Learning with Near-Data Computation on Cloud Object
Stores
authors:
- Diana Petrescu
- Arsany Guirguis
- Do Le Quoc
- Javier Picorel
- Rachid Guerraoui
- Florin Dinu
year: '2024'
doi: 10.1145/3698038.3698549
url: https://doi.org/10.1145/3698038.3698549
dblp_key: conf/cloud/PetrescuGQPGD24
venue_name: SoCC
pages: 995-1011
- title: 'Komet: A Serverless Platform for Low-Earth Orbit Edge Services'
authors:
- Tobias Pfandzelter
- David Bermbach
year: '2024'
doi: 10.1145/3698038.3698517
url: https://doi.org/10.1145/3698038.3698517
dblp_key: conf/cloud/PfandzelterB24
venue_name: SoCC
pages: 866-882
- title: The Hidden Carbon Footprint of Serverless Computing
authors:
- Rohan Basu Roy
- Raghavendra Kanakagiri
- Yankai Jiang 0002
- Devesh Tiwari
year: '2024'
doi: 10.1145/3698038.3698546
url: https://doi.org/10.1145/3698038.3698546
dblp_key: conf/cloud/RoyK0T24
venue_name: SoCC
pages: 570-579
- title: Is It Time To Put Cold Starts In The Deep Freeze?
authors:
- Carlos Segarra
- Ivan Durev
- Peter R. Pietzuch
year: '2024'
doi: 10.1145/3698038.3698527
url: https://doi.org/10.1145/3698038.3698527
dblp_key: conf/cloud/SegarraDP24
venue_name: SoCC
pages: 259-268
- title: 'Rethinking the Networking Stack for Serverless Environments: A Sidecar Approach'
authors:
- Vishwanath Seshagiri
- Abhinav Gupta
- Vahab Jabrayilov
- Avani Wildani
- Kostis Kaffes
year: '2024'
doi: 10.1145/3698038.3698561
url: https://doi.org/10.1145/3698038.3698561
dblp_key: conf/cloud/SeshagiriGJWK24
venue_name: SoCC
pages: 213-222
- title: Accountable Carbon Footprints and Energy Profiling For Serverless Functions
authors:
- Prateek Sharma 0001
- Alexander Fuerst
year: '2024'
doi: 10.1145/3698038.3698531
url: https://doi.org/10.1145/3698038.3698531
dblp_key: conf/cloud/SharmaF24
venue_name: SoCC
pages: 522-541
- title: 'Building AI Agents for Autonomous Clouds: Challenges and Design Principles'
authors:
- Manish Shetty
- Yinfang Chen
- Gagan Somashekar
- Minghua Ma
- Yogesh Simmhan
- Xuchao Zhang
- Jonathan Mace
- Dax Vandevoorde
- Pedro Henrique B. Las-Casas
- Shachee Mishra Gupta
- Suman Nath
- Chetan Bansal
- Saravan Rajmohan
year: '2024'
doi: 10.1145/3698038.3698525
url: https://doi.org/10.1145/3698038.3698525
dblp_key: conf/cloud/ShettyCSMSZMVLG24
venue_name: SoCC
pages: 99-110
- title: 'ParaGAN: A Scalable Distributed Training Framework for Generative Adversarial
Networks'
authors:
- Ziji Shi
- Jialin Li 0001
- Yang You 0001
year: '2024'
doi: 10.1145/3698038.3698563
url: https://doi.org/10.1145/3698038.3698563
dblp_key: conf/cloud/ShiL024
venue_name: SoCC
pages: 1032-1044
- title: Cloud-native Workflow Scheduling using a Hybrid Priority Rule, Dynamic Resource
Allocation, and Dynamic Task Partition
authors:
- Jungeun Shin
- Diana Arroyo
- Asser N. Tantawi
- Chen Wang 0039
- Alaa Youssef
- Rakesh Nagi
year: '2024'
doi: 10.1145/3698038.3698551
url: https://doi.org/10.1145/3698038.3698551
dblp_key: conf/cloud/ShinAT0YN24
venue_name: SoCC
pages: 830-846
- title: 'Vista: Machine Learning based Database Performance Troubleshooting Framework
in Amazon RDS'
authors:
- Vikramank Y. Singh
- Zhao Song 0001
- Balakrishnan (Murali) Narayanaswamy
- Kapil Eknath Vaidya
- Tim Kraska
year: '2024'
doi: 10.1145/3698038.3698519
url: https://doi.org/10.1145/3698038.3698519
dblp_key: conf/cloud/SinghSNVK24
venue_name: SoCC
pages: 83-98
- title: A Data Optimizer for Region-Aware Self-describing Files in Scientific Computing
authors:
- Yanjie Song
- Tianyuan Wu
- Yuanhao Li
- Guancheng Li
- Yuchen Liu
- Shu Yin 0001
- Wei Xue 0003
- Junchao Wang
year: '2024'
doi: 10.1145/3698038.3698526
url: https://doi.org/10.1145/3698038.3698526
dblp_key: conf/cloud/SongWLLL0XW24
venue_name: SoCC
pages: 883-897
- title: 'Demystifying the Fight Against Complexity: A Comprehensive Study of Live
Debugging Activities in Production Cloud Systems'
authors:
- P. C. Sruthi
- Zinan Guo
- Deming Chu
- Zhengyan Chen
- Yongle Zhang 0007
year: '2024'
doi: 10.1145/3698038.3698568
url: https://doi.org/10.1145/3698038.3698568
dblp_key: conf/cloud/SruthiGCCZ24
venue_name: SoCC
pages: 341-360
- title: 'Pre-Warming is Not Enough: Accelerating Serverless Inference With Opportunistic
Pre-Loading'
authors:
- Yifan Sui
- Hanfei Yu
- Yitao Hu
- Jianxun Li
- Hao Wang 0022
year: '2024'
doi: 10.1145/3698038.3698509
url: https://doi.org/10.1145/3698038.3698509
dblp_key: conf/cloud/SuiYHLW24
venue_name: SoCC
pages: 178-195
- title: Exploring the Efficiency of Renewable Energy-based Modular Data Centers at
Scale
authors:
- Jinghan Sun
- Zibo Gong
- Anup Agarwal
- Shadi A. Noghabi
- Ranveer Chandra
- Marc Snir
- Jian Huang 0006
year: '2024'
doi: 10.1145/3698038.3698544
url: https://doi.org/10.1145/3698038.3698544
dblp_key: conf/cloud/SunGANCS024
venue_name: SoCC
pages: 552-569
- title: 'PCLive: Pipelined Restoration of Application Containers for Reduced Service
Downtime'
authors:
- Shiv Bhushan Tripathi
- Debadatta Mishra
year: '2024'
doi: 10.1145/3698038.3698545
url: https://doi.org/10.1145/3698038.3698545
dblp_key: conf/cloud/TripathiM24
venue_name: SoCC
pages: 284-301
- title: Scheduling for Reduced Tail Task Latencies in Highly Utilized Datacenters
authors:
- Smita Vijayakumar
- Anil Madhavapeddy
- Evangelia Kalyvianaki
year: '2024'
doi: 10.1145/3698038.3698522
url: https://doi.org/10.1145/3698038.3698522
dblp_key: conf/cloud/VijayakumarMK24
venue_name: SoCC
pages: 302-321
- title: 'Hops: Fine-grained heterogeneous sensing, efficient and fair Deep Learning
cluster scheduling system'
authors:
- Qinghe Wang
- Futian Wang
- Xinwei Zheng
year: '2024'
doi: 10.1145/3698038.3698515
url: https://doi.org/10.1145/3698038.3698515
dblp_key: conf/cloud/WangWZ24
venue_name: SoCC
pages: 1-17
- title: 'En4S: Enabling SLOs in Serverless Storage Systems'
authors:
- Minghao Xie
- Chen Qian 0001
- Heiner Litz
year: '2024'
doi: 10.1145/3698038.3698529
url: https://doi.org/10.1145/3698038.3698529
dblp_key: conf/cloud/Xie0L24
venue_name: SoCC
pages: 160-177
- title: 'VWeiST: A Scalable and Efficient Proof-of-Stake Blockchain Consensus'
authors:
- Hang Xiong
- Cheng Qu
- Jing Li 0047
year: '2024'
doi: 10.1145/3698038.3698550
url: https://doi.org/10.1145/3698038.3698550
dblp_key: conf/cloud/XiongQL24
venue_name: SoCC
pages: 637-649
- title: 'ConMonitor: Lightweight Container Protection with Virtualization and VM
Functions'
authors:
- Shaowen Xu
- Qihang Zhou
- Zhicong Zhang
- Xiaoqi Jia
- Donglin Liu
- Heqing Huang 0001
- Haichao Du
- Zhenyu Song
year: '2024'
doi: 10.1145/3698038.3698520
url: https://doi.org/10.1145/3698038.3698520
dblp_key: conf/cloud/XuZZJLHDS24
venue_name: SoCC
pages: 755-773
- title: On-demand and Parallel Checkpoint/Restore for GPU Applications
authors:
- Yanning Yang
- Dong Du 0003
- Haitao Song 0001
- Yubin Xia
year: '2024'
doi: 10.1145/3698038.3698510
url: https://doi.org/10.1145/3698038.3698510
dblp_key: conf/cloud/Yang00X24
venue_name: SoCC
pages: 415-433
- title: 'IncBoost: Scaling Incremental Graph Processing for Edge Deletions and Weight
Updates'
authors:
- Xizhe Yin
- Zhijia Zhao 0001
- Rajiv Gupta 0001
year: '2024'
doi: 10.1145/3698038.3698524
url: https://doi.org/10.1145/3698038.3698524
dblp_key: conf/cloud/Yin0024
venue_name: SoCC
pages: 915-932
- title: 'Racos: Improving Erasure Coding State Machine Replication using Leaderless
Consensus'
authors:
- Jonathan Zarnstorff
- Lucas Lebow
- Christopher Siems
- Dillon Remuck
- Colin Ruiz
- Lewis Tseng
year: '2024'
doi: 10.1145/3698038.3698511
url: https://doi.org/10.1145/3698038.3698511
dblp_key: conf/cloud/ZarnstorffLSRRT24
venue_name: SoCC
pages: 600-617
- title: 'RomeFS: A CXL-SSD Aware File System Exploiting Synergy of Memory-Block Dual
Paths'
authors:
- Yekang Zhan
- Haichuan Hu
- Xiangrui Yang 0001
- Shaohua Wang
- Qiang Cao 0001
- Hong Jiang 0001
- Jie Yao 0001
year: '2024'
doi: 10.1145/3698038.3698539
url: https://doi.org/10.1145/3698038.3698539
dblp_key: conf/cloud/ZhanHYWCJY24
venue_name: SoCC
pages: 720-736
- title: 'Faascale: Scaling MicroVM Vertically for Serverless Computing with Memory
Elasticity'
authors:
- Xinmin Zhang
- Qiang He 0001
- Hao Fan 0006
- Song Wu 0001
year: '2024'
doi: 10.1145/3698038.3698512
url: https://doi.org/10.1145/3698038.3698512
dblp_key: conf/cloud/ZhangH0024
venue_name: SoCC
pages: 196-212
- title: 'Deoxys: A Causal Inference Engine for Unhealthy Node Mitigation in Large-scale
Cloud Infrastructure'
authors:
- Chaoyun Zhang
- Randolph Yao
- Si Qin
- Ze Li 0005
- Shekhar Agrawal
- Binit R. Mishra
- Tri Tran
- Minghua Ma
- Qingwei Lin
- Murali Chintalapati
- Dongmei Zhang 0001
year: '2024'
doi: 10.1145/3698038.3698534
url: https://doi.org/10.1145/3698038.3698534
dblp_key: conf/cloud/ZhangYQLAMTMLC024
venue_name: SoCC
pages: 361-379
- title: 'TianMen: a DPU-based storage network offloading structure for disaggregated
datacenters'
authors:
- Weiyue Zhao
- Jingya Wu
- Wenyan Lu
- Xiaowei Li 0001
- Guihai Yan
year: '2024'
doi: 10.1145/3698038.3698528
url: https://doi.org/10.1145/3698038.3698528
dblp_key: conf/cloud/ZhaoWL0Y24
venue_name: SoCC
pages: 689-703
- title: 'FaPES: Enabling Efficient Elastic Scaling for Serverless Machine Learning
Platforms'
authors:
- Xiaoyang Zhao 0005
- Siran Yang
- Jiamang Wang
- Lansong Diao
- Lin Qu
- Chuan Wu 0001
year: '2024'
doi: 10.1145/3698038.3698548
url: https://doi.org/10.1145/3698038.3698548
dblp_key: conf/cloud/ZhaoYWDQ024
venue_name: SoCC
pages: 443-459
- title: 'Pack: Towards Communication-Efficient Homomorphic Encryption in Federated
Learning'
authors:
- Zeyuan Zuo
- Ningxin Su
- Baochun Li
- Teng Zhang
year: '2024'
doi: 10.1145/3698038.3698557
url: https://doi.org/10.1145/3698038.3698557
dblp_key: conf/cloud/ZuoSLZ24
venue_name: SoCC
pages: 470-486
- title: Proceedings of the 2024 ACM Symposium on Cloud Computing, SoCC 2024, Redmond,
WA, USA, November 20-22, 2024
authors: []
year: '2024'
doi: 10.1145/3698038
url: https://doi.org/10.1145/3698038
dblp_key: conf/cloud/2024
venue_name: SoCC
pages: null

View File

@@ -0,0 +1,65 @@
venue: SoCC
year: 2024
date: "2024-11-01"
tags: [cloud-computing, distributed-systems]
selected:
- dblp_key: "conf/cloud/PatkeRJQPNKI24"
title: "Queue Management for SLO-Oriented Large Language Model Serving"
tldr: "A queue management framework that enforces latency SLOs for LLM serving by dynamically routing and prioritizing requests across heterogeneous inference capacity."
why_notable: "As LLM deployments move into production clouds, meeting strict time-to-first-token and total latency SLOs becomes critical; this work directly addresses that gap with a practical, deployable solution. It is one of the first papers to treat LLM serving as a cloud SLO-management problem rather than a pure model-optimization problem."
- dblp_key: "conf/cloud/LiuYOJY0HHSZWH24"
title: "Kale: Elastic GPU Scheduling for Online DL Model Training"
tldr: "Kale elastically resizes GPU allocations for online DL training jobs in response to real-time resource pressure, improving cluster utilization without violating training progress guarantees."
why_notable: "Elastic GPU scheduling is an unsolved pain point in shared ML clusters; Kale's ability to dynamically shrink and expand jobs without checkpointing overhead is directly applicable to production training infrastructure at hyperscalers."
- dblp_key: "conf/cloud/WangWZ24"
title: "Hops: Fine-grained heterogeneous sensing, efficient and fair Deep Learning cluster scheduling system"
tldr: "Hops uses fine-grained, heterogeneity-aware GPU sensing to make scheduling decisions that are simultaneously efficient and fair across diverse DL workloads."
why_notable: "Hardware heterogeneity in GPU clusters is the norm, not the exception; Hops provides a principled framework for exploiting that diversity, making it immediately relevant to operators of mixed-generation GPU fleets."
- dblp_key: "conf/cloud/CopikCRBBH24"
title: "Process-as-a-Service: Unifying Elastic and Stateful Clouds with Serverless Processes"
tldr: "PraaS introduces a long-lived, stateful serverless process abstraction that bridges the gap between ephemeral FaaS functions and persistent cloud VMs."
why_notable: "Statelessness is the central limitation of today's FaaS platforms; this paper proposes a well-grounded new programming model that could reshape how developers think about serverless, backed by implementation and evaluation at scale."
- dblp_key: "conf/cloud/ZhaoYWDQ024"
title: "FaPES: Enabling Efficient Elastic Scaling for Serverless Machine Learning Platforms"
tldr: "FaPES achieves fast, fine-grained vertical and horizontal scaling of serverless ML serving pods by decoupling memory provisioning from compute allocation."
why_notable: "Elastic scaling for ML inference is a key cost driver in cloud ML platforms; FaPES demonstrates sub-second scaling decisions that reduce both cold-start overhead and resource waste, with results from a production deployment."
- dblp_key: "conf/cloud/ZhangH0024"
title: "Faascale: Scaling MicroVM Vertically for Serverless Computing with Memory Elasticity"
tldr: "Faascale enables runtime vertical memory scaling of Firecracker microVMs for serverless functions, eliminating the need to restart or pre-provision fixed memory sizes."
why_notable: "Memory over-provisioning is a major cost inefficiency in serverless platforms; Faascale's live memory elasticity directly reduces waste while maintaining the isolation guarantees of microVM-based FaaS."
- dblp_key: "conf/cloud/HasanZU24"
title: "AutoBurst: Autoscaling Burstable Instances for Cost-effective Latency SLOs"
tldr: "AutoBurst exploits burstable cloud instance types and their CPU credit mechanics to autoscale services at lower cost while still meeting tail-latency SLOs."
why_notable: "Burstable instances are widely available on all major clouds yet poorly understood for SLO-sensitive workloads; this paper provides a rigorous autoscaling policy that unlocks significant cost savings without sacrificing latency guarantees."
- dblp_key: "conf/cloud/GuptaNHCTSRLWWG24"
title: "Dynamic Idle Resource Leasing To Safely Oversubscribe Capacity At Meta"
tldr: "Meta's production system dynamically lends idle reserved-capacity to opportunistic workloads, recovering stranded compute while ensuring low-latency eviction when owners reclaim resources."
why_notable: "This industry paper provides rare visibility into hyperscale capacity management at Meta's scale, demonstrating that safe oversubscription can recover tens of percent of otherwise idle datacenter capacity."
- dblp_key: "conf/cloud/DiaoHKSBDPPNNK24"
title: "Forecasting Algorithms for Intelligent Resource Scaling: An Experimental Analysis"
tldr: "A comprehensive empirical study comparing classical and learned forecasting algorithms for cloud autoscaling, yielding concrete guidelines on when each approach wins."
why_notable: "Autoscaling relies heavily on workload forecasting, yet practitioners lack principled guidance on algorithm choice; this work from the MIT/AWS group fills that gap with rigorous experimentation across real-world cloud traces."
- dblp_key: "conf/cloud/SinghSNVK24"
title: "Vista: Machine Learning based Database Performance Troubleshooting Framework in Amazon RDS"
tldr: "Vista is a production ML framework deployed in Amazon RDS that automatically diagnoses performance regressions by correlating database metrics with causal performance models."
why_notable: "Database performance debugging at cloud scale is labor-intensive and error-prone; Vista's deployment in RDS demonstrates how ML-driven root-cause analysis can reduce mean-time-to-resolution for thousands of customer instances."
- dblp_key: "conf/cloud/AgrawalRBNV0T24"
title: "Inshrinkerator: Compressing Deep Learning Training Checkpoints via Dynamic Quantization"
tldr: "Inshrinkerator applies dynamic quantization to DL training checkpoints at save time, reducing checkpoint sizes by up to 4x with negligible impact on training convergence."
why_notable: "Checkpoint storage and I/O are significant costs in large-scale distributed training; this work provides a transparent, easy-to-adopt compression layer that can be retrofitted into existing training pipelines."
- dblp_key: "conf/cloud/BashirGSSIOD24"
title: "The Sunk Carbon Fallacy: Rethinking Carbon Footprint Metrics for Effective Carbon-Aware Scheduling"
tldr: "The paper argues that conventional carbon metrics misattribute embodied (manufacturing) carbon as a fixed sunk cost, and proposes revised metrics that make carbon-aware scheduling decisions more accurate and actionable."
why_notable: "Carbon-aware cloud scheduling is an emerging priority, but flawed metrics can lead to counterproductive decisions; this work from the Delimitrou and Irwin groups provides a conceptual correction with broad implications for green cloud policy and tooling."

View File

@@ -0,0 +1,952 @@
venue: SoCC
year: 2025
source: dblp
count: 68
papers:
- title: 'Water Footprint of Datacenter Applications: Methodological Implications
of Manufacturing, Operational, and Decommissioning Phases'
authors:
- Amit Samanta 0001
- Yankai Jiang 0002
- Ryan Stutsman
- Rohan Basu Roy
year: '2025'
doi: 10.1145/3772052.3772216
url: https://doi.org/10.1145/3772052.3772216
dblp_key: conf/cloud/00010SR25
venue_name: SoCC
pages: 102-110
- title: 'GridGreen: Integrating Serverless Computing in HPC Systems for Performance
and Sustainability'
authors:
- Amit Samanta 0001
- Ryan Stutsman
- Rohan Basu Roy
year: '2025'
doi: 10.1145/3772052.3772241
url: https://doi.org/10.1145/3772052.3772241
dblp_key: conf/cloud/0001SR25
venue_name: SoCC
pages: 388-401
- title: 'DyOrc: Efficient Serving of Dynamic Machine Learning Workflows'
authors:
- Shiwei Zhang 0002
- Lansong Diao
- Zisheng Meng
- Siyu Wang 0006
- Wei Lin 0016
- Chuan Wu 0001
year: '2025'
doi: 10.1145/3772052.3772218
url: https://doi.org/10.1145/3772052.3772218
dblp_key: conf/cloud/0002DMW0025
venue_name: SoCC
pages: 111-124
- title: 'Oneiros: KV Cache Optimization through Parameter Remapping for Multi-tenant
LLM Serving'
authors:
- Ruihao Li 0002
- Shagnik Pal
- Vineeth Narayan Pullu
- Prasoon Sinha
- Jeeho Ryoo
- Lizy K. John
- Neeraja J. Yadwadkar
year: '2025'
doi: 10.1145/3772052.3772215
url: https://doi.org/10.1145/3772052.3772215
dblp_key: conf/cloud/0002PPSRJY25
venue_name: SoCC
pages: 88-101
- title: '10Cache: Heterogeneous Resource-Aware Tensor Caching and Migration for LLM
Training'
authors:
- Sabiha Afroz
- Redwan Ibne Seraj Khan
- Hadeel Albahar
- Jingoo Han
- Ali Raza Butt
year: '2025'
doi: 10.1145/3772052.3772236
url: https://doi.org/10.1145/3772052.3772236
dblp_key: conf/cloud/AfrozKAHB25
venue_name: SoCC
pages: 320-333
- title: 'FedDance: Efficient Participant Selection for Federated Learning in Highly
Dynamic Environments'
authors:
- Yuanhang Chen
- Xiaosong Chen
- Wenyan Chen 0001
- Huanle Xu
year: '2025'
doi: 10.1145/3772052.3772252
url: https://doi.org/10.1145/3772052.3772252
dblp_key: conf/cloud/ChenC0X25
venue_name: SoCC
pages: 521-534
- title: 'ParaLog: Consistent Host-side Logging for Parallel Checkpoints'
authors:
- Steven W. D. Chien
- Kento Sato
- Artur Podobas
- Niclas Jansson
- Stefano Markidis
- Michio Honda
year: '2025'
doi: 10.1145/3772052.3772212
url: https://doi.org/10.1145/3772052.3772212
dblp_key: conf/cloud/ChienSPJMH25
venue_name: SoCC
pages: 59-73
- title: Towards a Lightweight Sidecar-based Service Mesh for Serverless
authors:
- Lazar Cvetkovic
- Ana Klimovic
year: '2025'
doi: 10.1145/3772052.3772210
url: https://doi.org/10.1145/3772052.3772210
dblp_key: conf/cloud/CvetkovicK25
venue_name: SoCC
pages: 860-866
- title: 'FLASH: Fast Linked AF_XDP Sockets for High Performance Network Function
Chains'
authors:
- Debojeet Das
- Kevin Prafull Baua
- Aditya Kansara
- Arghyadip Chakraborty
- Dheeraj Kurukunda
- Mythili Vutukuru
- Purushottam Kulkarni
year: '2025'
doi: 10.1145/3772052.3772258
url: https://doi.org/10.1145/3772052.3772258
dblp_key: conf/cloud/DasBKCKVK25
venue_name: SoCC
pages: 571-584
- title: Hybrid Learning and Optimization-Based Dynamic Scheduling for DL Workloads
on Heterogeneous GPU Clusters
authors:
- Shruti Dongare
- Redwan Ibne Seraj Khan
- Hadeel Albahar
- Nannan Zhao
- Diego Meléndez-Maita
- Ali Raza Butt
year: '2025'
doi: 10.1145/3772052.3772257
url: https://doi.org/10.1145/3772052.3772257
dblp_key: conf/cloud/DongareKAZMB25
venue_name: SoCC
pages: 557-570
- title: Understanding GPU Resource Interference One Level Deeper
authors:
- Paul Elvinger
- Foteini Strati
- Natalie Enright Jerger
- Ana Klimovic
year: '2025'
doi: 10.1145/3772052.3772270
url: https://doi.org/10.1145/3772052.3772270
dblp_key: conf/cloud/ElvingerSJK25
venue_name: SoCC
pages: 687-694
- title: 'Memory Matters: Load-Time Deduplication for Unikernels'
authors:
- Gaulthier Gain
- Benoit Knott
- Cyril Soldani
- Laurent Mathy
year: '2025'
doi: 10.1145/3772052.3772247
url: https://doi.org/10.1145/3772052.3772247
dblp_key: conf/cloud/GainKSM25
venue_name: SoCC
pages: 464-478
- title: 'PnM: Efficient Intra-Datacenter Calls Packing for Large Conferencing Services'
authors:
- Rohan Gandhi
- Ankur Mallick
year: '2025'
doi: 10.1145/3772052.3772224
url: https://doi.org/10.1145/3772052.3772224
dblp_key: conf/cloud/GandhiM25
venue_name: SoCC
pages: 183-195
- title: 'DuoAdmit: Dual-Layer Cache Admission for Load-Balancing Hybrid-Redundancy
Block Storage'
authors:
- Xiaojun Guo
- Guangjie Xing
- Hua Wang 0008
- Ke Zhou 0001
- Ming Xie
- Fenqiang Yang
- Min Fu
- Bin Xu
- Jianying Hu
- Guangchao Yang
year: '2025'
doi: 10.1145/3772052.3772223
url: https://doi.org/10.1145/3772052.3772223
dblp_key: conf/cloud/GuoX00XYFXHY25
venue_name: SoCC
pages: 170-182
- title: 'Symbiosis: Multi-Adapter Inference and Fine-Tuning'
authors:
- Saransh Gupta
- Umesh Deshpande
- Travis Janssen
- Swaminathan Sundararaman
year: '2025'
doi: 10.1145/3772052.3772230
url: https://doi.org/10.1145/3772052.3772230
dblp_key: conf/cloud/GuptaDJS25
venue_name: SoCC
pages: 776-789
- title: 'Orcas: A DAG-based Consensus Approach with Linear Communication Overhead'
authors:
- Yi Hua
- Xiulong Liu 0001
- Hao Xu 0025
- Chenyu Zhang
- Gaowei Shi
- Keqiu Li
- Muhammad Shahzad 0001
- Guyue (Grace) Liu
year: '2025'
doi: 10.1145/3772052.3772238
url: https://doi.org/10.1145/3772052.3772238
dblp_key: conf/cloud/HuaLXZSL0L25
venue_name: SoCC
pages: 348-360
- title: Cost-Efficient Cloud Infrastructure with Hugepage-aware Memory Deduplication
authors:
- Ruizhe Huang
- Xinyu Wang 0043
- Zhida An
- Hanwen Lei
- Peng Jiang 0007
- Ziqi Zhang
- Ding Li 0001
- Yao Guo 0001
- Xiangqun Chen
- Yuntao Liu
- Kang Zhou
- Yuxin Ren 0001
- Ning Jia 0004
- Xinwei Hu
year: '2025'
doi: 10.1145/3772052.3772232
url: https://doi.org/10.1145/3772052.3772232
dblp_key: conf/cloud/HuangWAL0Z00CLZ25
venue_name: SoCC
pages: 269-282
- title: 'AdaSpec: Adaptive Speculative Decoding for Fast, SLO-Aware Large Language
Model Serving'
authors:
- Kaiyu Huang
- Hao Wu 0032
- Zhubo Shi
- Han Zou
- Minchen Yu
- Qingjiang Shi
year: '2025'
doi: 10.1145/3772052.3772239
url: https://doi.org/10.1145/3772052.3772239
dblp_key: conf/cloud/HuangWSZYS25
venue_name: SoCC
pages: 361-374
- title: 'Hydra: Virtualized Multi-Language Runtime for High-Density Serverless Platforms'
authors:
- Serhii Ivanenko
- Vasyl Lanko
- Rudi Horn
- Vojin Jovanovic
- Rodrigo Bruno
year: '2025'
doi: 10.1145/3772052.3772267
url: https://doi.org/10.1145/3772052.3772267
dblp_key: conf/cloud/IvanenkoLHJB25
venue_name: SoCC
pages: 644-658
- title: Spatio-Temporal Resource Control for Cloud-Native GPU Provisioning
authors:
- Hyeon-Jun Jang
- Sang-Jae Kim
- Weikuan Yu
- Hyun-Wook Jin
year: '2025'
doi: 10.1145/3772052.3772271
url: https://doi.org/10.1145/3772052.3772271
dblp_key: conf/cloud/JangKYJ25
venue_name: SoCC
pages: 695-707
- title: 'PerfMon: Performance Monitoring of Host Network Stack'
authors:
- Ranjitha K.
- Ankit Sharma
- Malsawmsanga Sailo
- Arun Siddardha
- Amrit Kumar 0008
- Praveen Tammana
- Pravein Govindan Kannan
- Priyanka Naik
year: '2025'
doi: 10.1145/3772052.3772244
url: https://doi.org/10.1145/3772052.3772244
dblp_key: conf/cloud/KSSS0TKN25
venue_name: SoCC
pages: 430-442
- title: Balancing Fairness and Performance in Multi-User Spark Workloads with Dynamic
Scheduling
authors:
- Davis Kazemaks
- Laurens Versluis
- Burcu Kulahcioglu Ozkan
- Jérémie Decouchant
year: '2025'
doi: 10.1145/3772052.3772214
url: https://doi.org/10.1145/3772052.3772214
dblp_key: conf/cloud/KazemaksVOD25
venue_name: SoCC
pages: 867-880
- title: 'Funky: Cloud-Native FPGA Virtualization and Orchestration'
authors:
- Atsushi Koshiba
- Charalampos Mainas
- Pramod Bhatotia
year: '2025'
doi: 10.1145/3772052.3772226
url: https://doi.org/10.1145/3772052.3772226
dblp_key: conf/cloud/KoshibaMB25
venue_name: SoCC
pages: 209-224
- title: 'Revisiting State Machine Replication in Practice: Lessons from Building
an etcd-inspired System'
authors:
- Lucas Lebow
- Mason Dunkle
- Christopher Siems
- Jonathan Zarnstorff
- Lewis Tseng
year: '2025'
doi: 10.1145/3772052.3772246
url: https://doi.org/10.1145/3772052.3772246
dblp_key: conf/cloud/LebowDSZT25
venue_name: SoCC
pages: 456-463
- title: 'CoRe: Collaborative Replica Scheduling for Large-Scale Cloud Database Services'
authors:
- Hongyu Lei
- Shiyu Di
- Chunhua Li 0002
- Ke Zhou 0001
- Ming Xie
- Fenqiang Yang
- Jianping Zhu
- Xiang Li
- Kezhou Yan
year: '2025'
doi: 10.1145/3772052.3772248
url: https://doi.org/10.1145/3772052.3772248
dblp_key: conf/cloud/LeiD0ZXYZLY25
venue_name: SoCC
pages: 479-492
- title: 'REEF: Energy-Efficient, Application-QoS-Aware Thread Processing in Oversubscribed
Server Environments'
authors:
- Ning Li 0010
- Hong Jiang 0001
- Hao Che
- Zhijun Wang 0001
year: '2025'
doi: 10.1145/3772052.3772269
url: https://doi.org/10.1145/3772052.3772269
dblp_key: conf/cloud/Li0C025
venue_name: SoCC
pages: 673-686
- title: 'DFUSE: Strongly Consistent Write-Back Kernel Caching for Distributed Userspace
File Systems'
authors:
- Haoyu Li
- Jingkai Fu
- Qing Li 0002
- Windsor Hsu
- Asaf Cidon
year: '2025'
doi: 10.1145/3772052.3772208
url: https://doi.org/10.1145/3772052.3772208
dblp_key: conf/cloud/LiFLHC25
venue_name: SoCC
pages: 16-28
- title: Cloud-Native Digital Twin Orchestration for Real-Time Decision Optimization
Using Fuzzy Constraints and Reinforcement Learning
authors:
- David Li
- Angela Li
year: '2025'
doi: 10.1145/3772052.3772222
url: https://doi.org/10.1145/3772052.3772222
dblp_key: conf/cloud/LiL25
venue_name: SoCC
pages: 163-169
- title: 'WDP: Mitigating Interference in CPU Sharing Through Wake-up Delay Driven
Preemption for QoS-aware Co-location'
authors:
- Yaoxuan Li
- Pu Pang
- Yecheng Yang
- Quan Chen 0002
- Zhengxuan Yan
- Guoyao Xu
- Guodong Yang
- Liping Zhang 0013
- Minyi Guo
year: '2025'
doi: 10.1145/3772052.3772231
url: https://doi.org/10.1145/3772052.3772231
dblp_key: conf/cloud/LiPY0YXY0G25
venue_name: SoCC
pages: 255-268
- title: 'From Bottleneck to Breakthrough: Optimizing Scheduling for Hyperscale Containerized
Clusters'
authors:
- Bing Li
- Yuquan Ren
- Xinyi Song
- Zhilei Liu
- Cong Xu
- Jingyuan Zhang
- Caixue Lin
- Wu Xiang
- Rui Shi
year: '2025'
doi: 10.1145/3772052.3772240
url: https://doi.org/10.1145/3772052.3772240
dblp_key: conf/cloud/LiRSLXZLXS25
venue_name: SoCC
pages: 375-387
- title: 'FedLTA: A Federated Long-Tail Alignment Framework via Global Class Anchors'
authors:
- Yuzi Li
- Zhigang Wang
- Qinghua Zhang
- Junfeng Zhao 0005
year: '2025'
doi: 10.1145/3772052.3772259
url: https://doi.org/10.1145/3772052.3772259
dblp_key: conf/cloud/LiWZ025
venue_name: SoCC
pages: 722-734
- title: 'Middlebox: Unlocking Datacenter Growth and Grid Decarbonization'
authors:
- Liuzixuan Lin
- Andrew A. Chien
year: '2025'
doi: 10.1145/3772052.3772220
url: https://doi.org/10.1145/3772052.3772220
dblp_key: conf/cloud/LinC25
venue_name: SoCC
pages: 134-148
- title: 'Understanding Diffusion Model Serving in Production: A Top-Down Analysis
of Workload, Scheduling, and Resource Efficiency'
authors:
- Yanying Lin
- Shuaipeng Wu
- Shutian Luo
- Hong Xu 0001
- Haiying Shen
- Chong Ma
- Min Shen
- Le Chen
- Chengzhong Xu 0001
- Lin Qu
- Kejiang Ye
year: '2025'
doi: 10.1145/3772052.3772206
url: https://doi.org/10.1145/3772052.3772206
dblp_key: conf/cloud/LinWL0SMSC0QY25
venue_name: SoCC
pages: 1-15
- title: 'DRAM Failure Prediction with Correctable Error Spatial Patterns: A Hybrid
Learning Approach'
authors:
- Lei Liu
- Yinling Zhang
year: '2025'
doi: 10.1145/3772052.3772234
url: https://doi.org/10.1145/3772052.3772234
dblp_key: conf/cloud/LiuZ25
venue_name: SoCC
pages: 299-306
- title: Multiplexed Heterogeneous LLM Serving via Stage-Aligned Parallelism
authors:
- Tao Luo
- Kelvin K. W. Ng
- Zhen Ping Khor
- Sidharth Sankhe
- Boon Thau Loo
- Vincent Liu 0001
year: '2025'
doi: 10.1145/3772052.3772207
url: https://doi.org/10.1145/3772052.3772207
dblp_key: conf/cloud/LuoNKSL025
venue_name: SoCC
pages: 735-747
- title: Accelerating Distributed Filesystem Metadata Service via Decoupling Directory
Semantics from Metadata Indexing
authors:
- Wenhao Lv
- Hao Guo
- Qing Wang 0031
- Youyou Lu
- Jiwu Shu
year: '2025'
doi: 10.1145/3772052.3772237
url: https://doi.org/10.1145/3772052.3772237
dblp_key: conf/cloud/LvG0LS25
venue_name: SoCC
pages: 334-347
- title: Confidential Analytics with Scylla
authors:
- Shamiek Mangipudi
- Pavel Chuprikov
- Gerald Prendi
- Patrick Eugster
year: '2025'
doi: 10.1145/3772052.3772209
url: https://doi.org/10.1145/3772052.3772209
dblp_key: conf/cloud/MangipudiCPE25
venue_name: SoCC
pages: 29-44
- title: A Bootstrapping Technique for Reducing the Costs of Machine Learning Models
for Predicting Execution Times in IaaS Clouds
authors:
- Romolo Marotta
- Gabriele Russo Russo
- Francesco Quaglia
- Pierangelo di Sanzo
year: '2025'
doi: 10.1145/3772052.3772251
url: https://doi.org/10.1145/3772052.3772251
dblp_key: conf/cloud/MarottaRQS25
venue_name: SoCC
pages: 790-802
- title: 'PowerTrip: Exploiting Federated Heterogeneous Datacenter Power for Distributed
ML Training'
authors:
- Talha Mehboob
- Luanzheng Guo
- Nathan R. Tallent
- Michael Zink
- David Irwin 0001
year: '2025'
doi: 10.1145/3772052.3772228
url: https://doi.org/10.1145/3772052.3772228
dblp_key: conf/cloud/MehboobGTZI25
venue_name: SoCC
pages: 762-775
- title: The case for synchronous distributed protocols in public clouds
authors:
- Nenad Milosevic
- Robert Soulé
- Fernando Pedone
year: '2025'
doi: 10.1145/3772052.3772260
url: https://doi.org/10.1145/3772052.3772260
dblp_key: conf/cloud/MilosevicSP25
venue_name: SoCC
pages: 585-599
- title: 'THORN-ML: Transparent Hardware Offloaded Resilient Networks for RDMA based
Distributed ML Workloads'
authors:
- Maziyar Nazari
- Daniel Noland
- Giulio Sidoretti
- Erika Hunhoff
- Tamara Silbergleit Lehman
- Eric Keller
year: '2025'
doi: 10.1145/3772052.3772225
url: https://doi.org/10.1145/3772052.3772225
dblp_key: conf/cloud/NazariNSHLK25
venue_name: SoCC
pages: 196-208
- title: 'Serverless Elasticsearch: the Architecture Transformation from Stateful
to Stateless'
authors:
- Iraklis Psaroudakis
- Pooya Salehi
- Jason Bryan
- Francisco Fernández Castaño
- Brendan Cully
- Ankita Kumar
- Henning Andersen
- Thomas Repantis
year: '2025'
doi: 10.1145/3772052.3772245
url: https://doi.org/10.1145/3772052.3772245
dblp_key: conf/cloud/PsaroudakisSBCC25
venue_name: SoCC
pages: 443-455
- title: 'Valet: Efficient Data Placement on Modern SSDs'
authors:
- Devashish R. Purandare
- Peter Alvaro
- Avani Wildani
- Darrell D. E. Long
- Ethan L. Miller
year: '2025'
doi: 10.1145/3772052.3772256
url: https://doi.org/10.1145/3772052.3772256
dblp_key: conf/cloud/PurandareAWLM25
venue_name: SoCC
pages: 543-556
- title: 'ModServe: Modality- and Stage-Aware Resource Disaggregation for Scalable
Multimodal Model Serving'
authors:
- Haoran Qiu
- Anish Biswas
- Zihan Zhao
- Jayashree Mohan
- Alind Khare
- Esha Choukse
- Íñigo Goiri
- Zeyu Zhang 0005
- Haiying Shen
- Chetan Bansal
- Ramachandran Ramjee
- Rodrigo Fonseca
year: '2025'
doi: 10.1145/3772052.3772254
url: https://doi.org/10.1145/3772052.3772254
dblp_key: conf/cloud/QiuBZMKCG0SBRF25
venue_name: SoCC
pages: 817-830
- title: 'Nano-consensus: Ultra-fast, Quorum-less Coordination on the Wire'
authors:
- Davide Rovelli
- Christian Faerber
- Graham McKenzie
- Ali Pahlevan
- Sina Darabi
- Patrick Jahnke
- Patrick Eugster
year: '2025'
doi: 10.1145/3772052.3772268
url: https://doi.org/10.1145/3772052.3772268
dblp_key: conf/cloud/RovelliFMPDJE25
venue_name: SoCC
pages: 659-672
- title: 'CPU-Limits kill Performance: Time to rethink Resource Control'
authors:
- Chirag C. Shetty
- Sarthak Chakraborty
- Hubertus Franke
- Larisa Shwartz
- Chandra Narayanaswami
- Indranil Gupta
- Saurabh Jha
year: '2025'
doi: 10.1145/3772052.3772219
url: https://doi.org/10.1145/3772052.3772219
dblp_key: conf/cloud/ShettyCFSNGJ25
venue_name: SoCC
pages: 125-133
- title: 'CIS: Checkpointed Inference for Data Drift-Resilient Model Serving at Edge
Servers'
authors:
- Sudipta Saha Shubha
- Haiying Shen
- Ganesh Ananthanarayanan
year: '2025'
doi: 10.1145/3772052.3772261
url: https://doi.org/10.1145/3772052.3772261
dblp_key: conf/cloud/ShubhaSA25
venue_name: SoCC
pages: 600-613
- title: 'ALAP: Intent-Based Serverless Computing via Delayed Decision-Making'
authors:
- Prasoon Sinha
- Kostis Kaffes
- Neeraja J. Yadwadkar
year: '2025'
doi: 10.1145/3772052.3772262
url: https://doi.org/10.1145/3772052.3772262
dblp_key: conf/cloud/SinhaKY25
venue_name: SoCC
pages: 831-846
- title: A Fast, Efficient, and Strongly-Consistent Object Store
authors:
- Shuwen Sun
- Isaac Khor
- Ji-Yong Shin
- Peter Desnoyers
year: '2025'
doi: 10.1145/3772052.3772272
url: https://doi.org/10.1145/3772052.3772272
dblp_key: conf/cloud/SunKSD25
venue_name: SoCC
pages: 708-721
- title: Scalable and Fault-Tolerant Storage and File System Services with Non-Blocking
Synchronization for Private Clouds
authors:
- Mincheol Sung
- Ruslan Nikolaev 0001
- Binoy Ravindran
year: '2025'
doi: 10.1145/3772052.3772235
url: https://doi.org/10.1145/3772052.3772235
dblp_key: conf/cloud/Sung0R25
venue_name: SoCC
pages: 307-319
- title: 'Metis: A Non-Clairvoyant, Workflow-Aware OS Scheduler for Serverless Applications'
authors:
- Wenda Tang
- Yanan Yang
- Jie Wu 0001
year: '2025'
doi: 10.1145/3772052.3772221
url: https://doi.org/10.1145/3772052.3772221
dblp_key: conf/cloud/TangY025
venue_name: SoCC
pages: 149-162
- title: Multi-Agent Reinforcement Learning with Serverless Computing
authors:
- Rui Wei
- Hanfei Yu
- Xikang Song
- Jian Li 0008
- Devesh Tiwari
- Ying Mao 0001
- Hao Wang 0022
year: '2025'
doi: 10.1145/3772052.3772227
url: https://doi.org/10.1145/3772052.3772227
dblp_key: conf/cloud/WeiYS0T0025
venue_name: SoCC
pages: 225-239
- title: Scheduling Cloud VMs on Variable Capacity Datacenters
authors:
- Rajini Wijayawardana
- Andrew A. Chien
year: '2025'
doi: 10.1145/3772052.3772250
url: https://doi.org/10.1145/3772052.3772250
dblp_key: conf/cloud/WijayawardanaC25
venue_name: SoCC
pages: 507-520
- title: 'SneakPeek: Data-Aware Model Selection and Scheduling for Inference Serving
on the Edge'
authors:
- Joel Wolfrath
- Daniel Frink
- Abhishek Chandra
year: '2025'
doi: 10.1145/3772052.3772217
url: https://doi.org/10.1145/3772052.3772217
dblp_key: conf/cloud/WolfrathFC25
venue_name: SoCC
pages: 748-761
- title: Defragmentation Scheduling with Deep Reinforcement Learning in Shared GPU
Clusters
authors:
- Qingfu Wu
- Pengfei Chen 0002
- Yilun Wang 0001
year: '2025'
doi: 10.1145/3772052.3772242
url: https://doi.org/10.1145/3772052.3772242
dblp_key: conf/cloud/Wu0025
venue_name: SoCC
pages: 402-415
- title: 'FailLite: Failure-Resilient Model Serving for Resource-Constrained Edge
Environments'
authors:
- Li Wu
- Walid A. Hanafy
- Tarek F. Abdelzaher
- David Irwin 0001
- Jesse Milzman
- Prashant J. Shenoy
year: '2025'
doi: 10.1145/3772052.3772243
url: https://doi.org/10.1145/3772052.3772243
dblp_key: conf/cloud/WuHA0MS25
venue_name: SoCC
pages: 416-429
- title: Rethinking Tiered Memory Management in Cloud Data Centers
authors:
- Tong Xing 0002
- Jiaxun Yang
- Javier Picorel
- Antonio Barbalace
year: '2025'
doi: 10.1145/3772052.3772213
url: https://doi.org/10.1145/3772052.3772213
dblp_key: conf/cloud/XingYPB25
venue_name: SoCC
pages: 74-87
- title: 'VLCs: Managing Parallelism with Virtualized Libraries'
authors:
- Yineng Yan
- William Ruys
- Hochan Lee
- Ian Henriksen
- Arthur Michener Peters
- Sean Stephens
- Bozhi You
- Henrique Fingler
- Martin Burtscher
- Milos Gligoric 0001
- Keshav Pingali
- Mattan Erez
- George Biros
- Christopher J. Rossbach
year: '2025'
doi: 10.1145/3772052.3772265
url: https://doi.org/10.1145/3772052.3772265
dblp_key: conf/cloud/YanRLHPSYFB0PEB25
venue_name: SoCC
pages: 629-643
- title: 'FaaSGNN: Enabling Memory Efficient and Low Latency GNN Inference Services
with Serverless Computing'
authors:
- Yuzhuo Yang
- Kaihua Fu
- Quan Chen 0002
- Deze Zeng
- Shuo Quan
- Jie Wu 0001
- Minyi Guo
year: '2025'
doi: 10.1145/3772052.3772253
url: https://doi.org/10.1145/3772052.3772253
dblp_key: conf/cloud/YangFCZQ0G25
venue_name: SoCC
pages: 803-816
- title: Offloading Cloud-Native Infrastructure with XpuPod
authors:
- Bicheng Yang
- Jingkai He
- Dong Du 0003
- Yubin Xia
- Haibo Chen 0001
year: '2025'
doi: 10.1145/3772052.3772211
url: https://doi.org/10.1145/3772052.3772211
dblp_key: conf/cloud/YangH0X025
venue_name: SoCC
pages: 45-58
- title: 'ZipBatch: Multi-Tenant GPU Batching with Dual-Resource Regulation'
authors:
- Haoxuan Yu
- Sheng Yao 0006
- Wei Wang 0030
year: '2025'
doi: 10.1145/3772052.3772229
url: https://doi.org/10.1145/3772052.3772229
dblp_key: conf/cloud/YuY025
venue_name: SoCC
pages: 240-254
- title: 'Snap & Replay: A new way to analyze uarch-scale performance bottlenecks
for ML accelerators'
authors:
- Ioannis Zarkadas
- Amanda Tomlinson
- Asaf Cidon
- Baris Kasikci
- Ofir Weisse
year: '2025'
doi: 10.1145/3772052.3772233
url: https://doi.org/10.1145/3772052.3772233
dblp_key: conf/cloud/ZarkadasTCKW25
venue_name: SoCC
pages: 283-298
- title: 'CoMPI: Coordinated Model Merging and Parallel Inference at Edge'
authors:
- Shuang Zeng
- Haitao Zhang
- Zezhong Yan
year: '2025'
doi: 10.1145/3772052.3772249
url: https://doi.org/10.1145/3772052.3772249
dblp_key: conf/cloud/ZengZY25
venue_name: SoCC
pages: 493-506
- title: 'BLAFS: A Bloat-Aware Container File System'
authors:
- Huaifeng Zhang
- Mohannad Alhanahnah
- Philipp Leitner 0001
- Ahmed Ali-Eldin
year: '2025'
doi: 10.1145/3772052.3772263
url: https://doi.org/10.1145/3772052.3772263
dblp_key: conf/cloud/ZhangA0A25
venue_name: SoCC
pages: 614-628
- title: Rethinking Web Cache Design for the AI Era
authors:
- Yazhuo Zhang
- Jinqing Cai
- Avani Wildani
- Ana Klimovic
year: '2025'
doi: 10.1145/3772052.3772255
url: https://doi.org/10.1145/3772052.3772255
dblp_key: conf/cloud/ZhangCWK25
venue_name: SoCC
pages: 535-542
- title: 'Cauchy: A Cost-Efficient LLM Serving System through Adaptive Heterogeneous
Deployment'
authors:
- Yihui Zhang
- Han Shen
- Renyu Yang
- Di Tian
- Yuxi Luo
- Menghao Zhang 0001
- Li Li 0029
- Chunming Hu
- Tianyu Wo
- Chengru Song
- Jin Ouyang
year: '2025'
doi: 10.1145/3772052.3772264
url: https://doi.org/10.1145/3772052.3772264
dblp_key: conf/cloud/ZhangSYTL00HWSO25
venue_name: SoCC
pages: 881-893
- title: 'Cuckoo: Deadline-Aware Job Packing on Heterogeneous GPUs for DL Model Training'
authors:
- Yuzheng Zhang
- Renyu Yang
- Junhong Liu
- Weihan Jiang
- Tianyu Ye
- Yiqiao Liao
- Penghao Zhang
- Tiezi Zhang
- Kun Shang
- Tianyu Wo
- Chunming Hu
- Chengru Song
- Jin Ouyang
year: '2025'
doi: 10.1145/3772052.3772266
url: https://doi.org/10.1145/3772052.3772266
dblp_key: conf/cloud/ZhangYLJYLZZSWH25
venue_name: SoCC
pages: 847-859
- title: Proceedings of the 2025 ACM Symposium on Cloud Computing, SoCC 2025, Online,
USA, November 19-21, 2025
authors: []
year: '2025'
doi: 10.1145/3772052
url: https://doi.org/10.1145/3772052
dblp_key: conf/cloud/2025
venue_name: SoCC
pages: null

View File

@@ -0,0 +1,143 @@
venue: SoCC
year: 2025
papers:
- title: 'From Bottleneck to Breakthrough: Optimizing Scheduling for Hyperscale Containerized
Clusters'
authors:
- Bing Li
- Yuquan Ren
- Xinyi Song
- Zhilei Liu
- Cong Xu
- Jingyuan Zhang
- Caixue Lin
- Wu Xiang
- Rui Shi
reason: "Documents production-scale scheduling improvements at a hyperscale cloud provider, demonstrating how targeted optimizations reduce scheduling tail latency and increase cluster utilization in real containerized workloads."
- title: 'CPU-Limits kill Performance: Time to rethink Resource Control'
authors:
- Chirag C. Shetty
- Sarthak Chakraborty
- Hubertus Franke
- Larisa Shwartz
- Chandra Narayanaswami
- Indranil Gupta
- Saurabh Jha
reason: "Challenges the conventional use of CPU cgroup limits in cloud environments, showing through production evidence that CFS bandwidth throttling degrades application QoS and proposing a rethink of resource control abstractions."
- title: Rethinking Tiered Memory Management in Cloud Data Centers
authors:
- Tong Xing 0002
- Jiaxun Yang
- Javier Picorel
- Antonio Barbalace
reason: "Proposes a novel tiered memory management framework for cloud data centers that improves performance by rethinking the placement and migration policies across DRAM and CXL/NVM tiers."
- title: Cost-Efficient Cloud Infrastructure with Hugepage-aware Memory Deduplication
authors:
- Ruizhe Huang
- Xinyu Wang 0043
- Zhida An
- Hanwen Lei
- Peng Jiang 0007
- Ziqi Zhang
- Ding Li 0001
- Yao Guo 0001
- Xiangqun Chen
- Yuntao Liu
- Kang Zhou
- Yuxin Ren 0001
- Ning Jia 0004
- Xinwei Hu
reason: "Deploys hugepage-aware memory deduplication in a large production cloud, achieving significant memory savings without the performance regressions that plague conventional THP-based deduplication."
- title: 'ALAP: Intent-Based Serverless Computing via Delayed Decision-Making'
authors:
- Prasoon Sinha
- Kostis Kaffes
- Neeraja J. Yadwadkar
reason: "Introduces an intent-based programming model for serverless that defers scheduling decisions until runtime context is available, improving resource efficiency and SLO attainment over eager placement strategies."
- title: 'Hydra: Virtualized Multi-Language Runtime for High-Density Serverless Platforms'
authors:
- Serhii Ivanenko
- Vasyl Lanko
- Rudi Horn
- Vojin Jovanovic
- Rodrigo Bruno
reason: "Presents a virtualized runtime that multiplexes multiple language environments within a single sandbox, enabling higher function density and faster cold starts on serverless platforms."
- title: 'Serverless Elasticsearch: the Architecture Transformation from Stateful to
Stateless'
authors:
- Iraklis Psaroudakis
- Pooya Salehi
- Jason Bryan
- Francisco Fernández Castaño
- Brendan Cully
- Ankita Kumar
- Henning Andersen
- Thomas Repantis
reason: "Describes Elastic's production migration of Elasticsearch to a serverless, stateless architecture, sharing engineering lessons on decoupling compute from state at cloud scale."
- title: 'DFUSE: Strongly Consistent Write-Back Kernel Caching for Distributed Userspace
File Systems'
authors:
- Haoyu Li
- Jingkai Fu
- Qing Li 0002
- Windsor Hsu
- Asaf Cidon
reason: "Closes a long-standing gap in FUSE-based distributed file systems by enabling strongly consistent write-back caching in the kernel, significantly improving throughput without sacrificing correctness."
- title: Accelerating Distributed Filesystem Metadata Service via Decoupling Directory
Semantics from Metadata Indexing
authors:
- Wenhao Lv
- Hao Guo
- Qing Wang 0031
- Youyou Lu
- Jiwu Shu
reason: "Achieves scalable distributed filesystem metadata by separating directory namespace semantics from the underlying index structure, reducing contention and improving throughput for large-scale cloud storage."
- title: 'Valet: Efficient Data Placement on Modern SSDs'
authors:
- Devashish R. Purandare
- Peter Alvaro
- Avani Wildani
- Darrell D. E. Long
- Ethan L. Miller
reason: "Exploits fine-grained internal SSD geometry to make smarter data placement decisions, yielding measurable I/O performance gains without changes to the host storage stack."
- title: 'Understanding Diffusion Model Serving in Production: A Top-Down Analysis
of Workload, Scheduling, and Resource Efficiency'
authors:
- Yanying Lin
- Shuaipeng Wu
- Shutian Luo
- Hong Xu 0001
- Haiying Shen
- Chong Ma
- Min Shen
- Le Chen
- Chengzhong Xu 0001
- Lin Qu
- Kejiang Ye
reason: "Provides the first comprehensive production characterization of diffusion model inference workloads, revealing unique scheduling and resource efficiency challenges distinct from LLM serving."
- title: 'ModServe: Modality- and Stage-Aware Resource Disaggregation for Scalable
Multimodal Model Serving'
authors:
- Haoran Qiu
- Anish Biswas
- Zihan Zhao
- Jayashree Mohan
- Alind Khare
- Esha Choukse
- Íñigo Goiri
- Zeyu Zhang 0005
- Haiying Shen
- Chetan Bansal
- Ramachandran Ramjee
- Rodrigo Fonseca
reason: "Disaggregates compute resources per modality and pipeline stage for multimodal inference, with a Microsoft production deployment showing improved GPU utilization and latency over monolithic serving."
- title: 'THORN-ML: Transparent Hardware Offloaded Resilient Networks for RDMA based
Distributed ML Workloads'
authors:
- Maziyar Nazari
- Daniel Noland
- Giulio Sidoretti
- Erika Hunhoff
- Tamara Silbergleit Lehman
- Eric Keller
reason: "Offloads RDMA fault detection and recovery to programmable network hardware, making distributed ML training resilient to network failures without modifying the training framework or incurring software overhead."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,128 @@
venue: TC
year: 2024
selected:
- title: "Achieving DRAM-Like PCM by Trading Off Capacity for Latency"
authors:
- Irina Alam
- Puneet Gupta 0001
tldr: "Proposes a capacity-for-latency trade-off in Phase Change Memory to match DRAM-level access latency without specialized process changes."
why_notable: "Offers a practical path to deploying PCM as a DRAM alternative, directly addressing the latency gap that has blocked PCM adoption in main-memory systems."
- title: "A High-Performance, Energy-Efficient Modular DMA Engine Architecture"
authors:
- Thomas Benz
- Michael Rogenmoser
- Paul Scheffler
- Samuel Riedel
- Alessandro Ottaviano
- Andreas Kurth
- Torsten Hoefler
- Luca Benini
tldr: "Presents a modular, parametric DMA engine design achieving high bandwidth and low energy overhead for heterogeneous SoC data movement."
why_notable: "Provides an open, well-evaluated DMA baseline that researchers building custom SoCs or accelerators can directly reuse or benchmark against."
- title: "Split-Radix Based Compact Hardware Architecture for CRYSTALS-Kyber"
authors:
- Wenbo Guo 0009
- Shuguo Li
tldr: "Designs a compact FPGA/ASIC hardware accelerator for the CRYSTALS-Kyber post-quantum key encapsulation mechanism using a split-radix NTT."
why_notable: "Demonstrates efficient hardware realization of a NIST-standardized post-quantum algorithm, critical for transitioning real systems to quantum-resistant cryptography."
- title: "Accelerating Sparse DNNs Based on Tiled GEMM"
authors:
- Cong Guo 0003
- Fengchen Xue
- Jingwen Leng
- Yuxian Qiu
- Yue Guan 0003
- Weihao Cui
- Quan Chen 0002
- Minyi Guo
tldr: "Accelerates sparse deep neural network inference by restructuring sparse matrix multiplication into tiled GEMM operations that map efficiently onto GPU tensor cores."
why_notable: "Bridges the gap between theoretical sparsity speedups and GPU hardware realities, achieving practical inference acceleration on commodity hardware."
- title: "Xvpfloat: RISC-V ISA Extension for Variable Extended Precision Floating Point Computation"
authors:
- Eric Guthmuller
- César Fuguet
- Andrea Bocco
- Jérôme Fereyre
- Riccardo Alidori
- Ihsane Tahir
- Yves Durand
tldr: "Defines a RISC-V ISA extension supporting variable-precision floating-point operations beyond IEEE 754 standard widths, targeting HPC and scientific computing."
why_notable: "Addresses precision flexibility at the ISA level, enabling energy-efficient mixed-precision HPC workloads without requiring separate co-processors."
- title: "Enabling HW-Based Task Scheduling in Large Multicore Architectures"
authors:
- Lucas Morais
- Carlos Álvarez 0001
- Daniel Jiménez-González
- Juan Miguel De Haro Ruiz
- Guido Araujo
- Michael Frank 0008
- Alfredo Goldman
- Xavier Martorell
tldr: "Implements task-scheduling logic directly in hardware for large multicore chips, reducing OS scheduling overhead and improving parallelism exploitation."
why_notable: "Demonstrates that offloading fine-grained task management to hardware can substantially reduce software overhead in many-core systems."
- title: "Ara2: Exploring Single- and Multi-Core Vector Processing With an Efficient RVV 1.0 Compliant Open-Source Processor"
authors:
- Matteo Perotti
- Matheus A. Cavalcante
- Renzo Andri
- Lukas Cavigelli
- Luca Benini
tldr: "Presents Ara2, an open-source RISC-V vector processor fully compliant with RVV 1.0, evaluated across single- and multi-lane configurations for energy-efficient vector workloads."
why_notable: "Provides the community with a production-quality, open RVV 1.0 reference design and a thorough design-space exploration of vector-processor microarchitecture."
- title: "EcoFlow: Efficient Convolutional Dataflows on Low-Power Neural Network Accelerators"
authors:
- Lois Orosa 0001
- Skanda Koppula
- Yaman Umuroglu
- Konstantinos Kanellopoulos
- Juan Gómez-Luna
- Michaela Blott
- Kees A. Vissers
- Onur Mutlu
tldr: "Systematically analyzes and optimizes dataflow schedules for convolutional layers on low-power DNN accelerators, yielding significant energy savings."
why_notable: "Provides a principled framework for dataflow selection that benefits embedded AI accelerator designers targeting energy-constrained deployments."
- title: "Prefender: A Prefetching Defender Against Cache Side Channel Attacks as a Pretender"
authors:
- Luyi Li
- Jiayi Huang 0001
- Lang Feng 0001
- Zhongfeng Wang 0001
tldr: "Proposes a hardware prefetching mechanism that disguises cache access patterns to defend against conflict-based cache side-channel attacks with low performance overhead."
why_notable: "Addresses cache side-channel attacks at the microarchitecture level without relying on software mitigations, offering a lightweight and transparent defense."
- title: "Randomizing Set-Associative Caches Against Conflict-Based Cache Side-Channel Attacks"
authors:
- Wei Song 0002
- Zihan Xue
- Jinchi Han
- Zhenzhen Li
- Peng Liu 0005
tldr: "Introduces a cache randomization scheme for set-associative caches that eliminates conflict-based side-channel attack primitives with minimal performance overhead."
why_notable: "Provides a strong and low-cost architectural defense against a broad class of cache timing attacks that affect nearly all modern processors."
- title: "SCARF: Securing Chips With a Robust Framework Against Fabrication-Time Hardware Trojans"
authors:
- Mohammad Eslami
- Tara Ghasempouri
- Samuel Pagliarini
tldr: "Proposes a framework for detecting and mitigating hardware Trojans inserted during chip fabrication using lightweight logic testing combined with side-channel verification."
why_notable: "Tackles the increasingly critical supply-chain hardware-security threat with a practical methodology applicable during standard chip validation flows."
- title: "GraNDe: Efficient Near-Data Processing Architecture for Graph Neural Networks"
authors:
- Sungmin Yun 0001
- Hwayong Nam
- Jaehyun Park 0006
- Byeongho Kim
- Jung Ho Ahn
- Eojin Lee
tldr: "Designs a near-data processing accelerator tailored for graph neural network inference, co-locating compute with graph-structured memory to cut off-chip traffic."
why_notable: "Demonstrates that memory-wall bottlenecks in GNN inference can be alleviated by a purpose-built PIM design, achieving substantial speedup and energy efficiency gains."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,151 @@
venue: TC
year: 2025
selected:
- title: "RV-CURE: A RISC-V Capability Architecture for Full Memory Safety"
authors:
- Yonghae Kim
- Anurag Kar
- Jaewon Lee
- Jaekyu Lee
- Hyesoon Kim
tldr: "Extends the RISC-V ISA with hardware capabilities to enforce full memory safety—including bounds checking and pointer provenance—across the entire software stack."
why_notable: "Demonstrates that capability-based memory safety can be integrated into an open ISA at low cost, with implications for deploying safe-by-default embedded and server systems."
- title: "DIVIDE: Efficient RowHammer Defense via In-DRAM Cache-Based Hot Data Isolation"
authors:
- Haitao Du
- Yuxuan Yang 0009
- Song Chen 0001
- Yi Kang
tldr: "Proposes an in-DRAM cache that isolates frequently accessed rows, preventing RowHammer hammering without costly refresh storms or off-chip overhead."
why_notable: "Addresses the escalating RowHammer threat directly inside DRAM with negligible performance overhead, making it a compelling candidate for near-term hardware adoption."
- title: "SAL-PIM: A Subarray-Level Processing-in-Memory Architecture With LUT-Based Linear Interpolation for Transformer-Based Text Generation"
authors:
- Wontak Han
- Hyunjun Cho
- Donghyuk Kim
- Joo-Young Kim 0001
tldr: "Implements subarray-level PIM with lookup-table interpolation inside DRAM to accelerate the memory-bound non-linear operations of transformer inference."
why_notable: "Shows how fine-grained PIM design can unblock the bottlenecks specific to LLM inference, providing a pathway to in-memory acceleration of attention and activation layers."
- title: "FlashDecoding++Next: High Throughput LLM Inference With Latency and Memory Optimization"
authors:
- Guohao Dai 0001
- Ke Hong
- Qiuli Mao
- Xiuhong Li
- Jiaming Xu
- Haofeng Huang
- Hongtu Xia
- Xuefei Ning
- Shengen Yan
- Yun Liang 0001
- Yu Wang 0002
tldr: "Extends FlashDecoding with memory and latency optimizations to significantly raise GPU throughput during the autoregressive generation phase of large language models."
why_notable: "Directly advances the state of the art in LLM serving efficiency on GPU clusters, a problem with immediate commercial relevance."
- title: "Mix-GEMM: Extending RISC-V CPUs for Energy-Efficient Mixed-Precision DNN Inference Using Binary Segmentation"
authors:
- Jordi Fornt
- Enrico Reggiani
- Pau Fontova-Musté
- Narcís Rodas
- Alessandro Pappalardo
- Osman Sabri Unsal
- Adrián Cristal Kestelman
- Josep Altet
- Francesc Moll
- Jaume Abella 0001
tldr: "Adds lightweight ISA extensions to a RISC-V CPU for mixed-precision inference via binary segmentation, avoiding heavyweight SIMD or dedicated accelerators."
why_notable: "Provides a cost-effective route to on-device DNN inference on RISC-V embedded cores without the area overhead of a full vector or matrix unit."
- title: "Optimizing Tiny Transformers on Low-Power MCUs"
authors:
- Victor Jean-Baptiste Jung
- Alessio Burrello
- Moritz Scherer 0001
- Francesco Conti 0001
- Luca Benini
tldr: "Develops an automated deployment pipeline for transformer models on microcontrollers, exploiting tiling, quantization, and kernel fusion to fit within tight memory and compute budgets."
why_notable: "Enables state-of-the-art sequence models to run on ultra-low-power embedded processors, bridging the gap between transformer research and IoT hardware constraints."
- title: "Rethinking Control Flow in Spatial Architectures: Insights Into Control Flow Plane Design"
authors:
- Jinyi Deng
- Xinru Tang
- Jiahao Zhang
- Yuxuan Li
- Linyun Zhang
- Fengbin Tu
- Shaojun Wei
- Yang Hu 0001
- Shouyi Yin
tldr: "Systematically studies control-flow support in dataflow/spatial accelerators and proposes a general control-flow plane abstraction that unifies existing ad hoc designs."
why_notable: "Offers a principled framework for architects designing the next generation of programmable spatial accelerators, where irregular control flow remains a fundamental challenge."
- title: "High-Performance Hardware Implementation of Crystals-Dilithium Based on Improved MDC-NTT"
authors:
- Yijun Cui
- Junjie Zhong
- Bei Wang 0013
- Tianyu Xu 0002
- Chenghua Wang
- Weiqiang Liu 0001
tldr: "Presents an optimized ASIC accelerator for CRYSTALS-Dilithium digital signatures using an improved multi-delay commutator NTT to maximize throughput."
why_notable: "Delivers high-performance hardware for a NIST-standardized post-quantum signature scheme, essential for quantum-safe authentication in future systems."
- title: "Hardware Accelerated Vision Transformer via Heterogeneous Architecture Design and Adaptive Dataflow Mapping"
authors:
- Yingxue Gao
- Teng Wang
- Lei Gong 0003
- Chao Wang 0003
- Dong Dai 0001
- Yang Yang 0080
- Xianglan Chen
- Xi Li 0003
- Xuehai Zhou
tldr: "Designs a heterogeneous accelerator for Vision Transformers that adaptively maps attention and FFN computations onto specialized dataflow engines to maximize utilization."
why_notable: "Addresses the heterogeneous computational demands of ViT workloads with a flexible architecture, demonstrating state-of-the-art throughput-per-watt on image recognition tasks."
- title: "29-Billion Atoms Molecular Dynamics Simulation With Ab Initio Accuracy on 35 Million Cores of New Sunway Supercomputer"
authors:
- Xun Wang 0010
- Xiangyu Meng 0005
- Zhuoqiang Guo
- Mingzhen Li 0001
- Lijun Liu
- Mingfan Li
- Qian Xiao
- Tong Zhao
- Ninghui Sun
- Guangming Tan
- Weile Jia
tldr: "Scales a machine-learning-based molecular dynamics simulation to 29 billion atoms at ab-initio accuracy across 35 million cores on the Sunway supercomputer."
why_notable: "Sets a landmark in scientific HPC scalability, demonstrating how deep co-design of architecture, communication, and ML models enables quantum-accurate simulation at unprecedented scale."
- title: "AXI-REALM: Safe, Modular and Lightweight Traffic Monitoring and Regulation for Heterogeneous Mixed-Criticality Systems"
authors:
- Thomas Benz
- Alessandro Ottaviano
- Chaoqun Liang
- Robert Balas
- Angelo Garofalo
- Francesco Restuccia 0002
- Alessandro Biondi 0001
- Davide Rossi 0001
- Luca Benini
tldr: "Introduces an open-source AXI interconnect module that enforces bandwidth and latency isolation between mixed-criticality components in heterogeneous SoCs."
why_notable: "Provides a practical, standards-compliant hardware mechanism for achieving real-time guarantees in safety-critical SoCs built from commodity IP blocks."
- title: "Stream: Design Space Exploration of Layer-Fused DNNs on Heterogeneous Dataflow Accelerators"
authors:
- Arne Symons
- Linyan Mei
- Steven Colleman
- Pouya Houshmand
- Sebastian Karl
- Marian Verhelst
tldr: "Presents a framework for exploring the design space of layer-fused DNN execution across heterogeneous arrays, jointly optimizing tiling, scheduling, and memory allocation."
why_notable: "Enables systematic co-design of DNN models and heterogeneous accelerators, a key capability as networks grow more complex and hardware resources more diverse."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,105 @@
venue: TCC
year: 2024
selected:
- title: "FaaSCtrl: A Comprehensive-Latency Controller for Serverless Platforms"
authors:
- Abhisek Panda
- Smruti R. Sarangi
tldr: "FaaSCtrl is a feedback-control system for serverless platforms that jointly manages cold-start, queuing, and execution latency to meet end-to-end SLOs."
why_notable: "One of the few serverless controllers that addresses all three latency components together, providing a principled alternative to ad-hoc autoscaling heuristics."
- title: "FUSIONIZE++: Improving Serverless Application Performance Using Dynamic Task Inlining and Infrastructure Optimization"
authors:
- Trever Schirmer
- Joel Scheuner
- Tobias Pfandzelter
- David Bermbach
tldr: "FUSIONIZE++ dynamically fuses serverless functions at runtime and co-optimizes infrastructure selection to cut invocation overhead and cost."
why_notable: "Demonstrates concrete end-to-end performance gains from function fusion in real serverless deployments, directly relevant to practitioners optimizing FaaS pipelines."
- title: "BaaSLess: Backend-as-a-Service (BaaS)-Enabled Workflows in Federated Serverless Infrastructures"
authors:
- Thomas Larcher
- Philipp Gritsch
- Stefan Nastic
- Sashko Ristov
tldr: "BaaSLess integrates BaaS capabilities into serverless workflow execution across federated multi-provider infrastructures, enabling stateful cross-cloud function orchestration."
why_notable: "Addresses the underexplored intersection of BaaS, serverless, and federation, offering a practical blueprint for multi-cloud serverless applications."
- title: "Slim and Fast: Low-Overhead Container Overlay Network With Fast Connection Setup"
authors:
- Fusheng Lin
- Xin Zhang 0117
- Guo Chen 0001
- Li Chen 0008
- Kenli Li 0001
- Hongbo Jiang 0001
tldr: "A redesigned container overlay network that minimizes control-plane overhead and dramatically reduces connection setup latency for microservice-dense deployments."
why_notable: "The implementation targets real Kubernetes environments and directly improves east-west latency for microservices at scale."
- title: "Trustless Collaborative Cloud Federation"
authors:
- Bishakh Chandra Ghosh
- Sandip Chakraborty 0001
tldr: "A blockchain-backed protocol that enables resource sharing across competing cloud providers without requiring a trusted third party."
why_notable: "Tackles the fundamental trust barrier in multi-cloud federation with a practical, decentralized design that avoids provider lock-in."
- title: "An Adaptive Cloud Resource Quota Scheme Based on Dynamic Portraits and Task-Resource Matching"
authors:
- Zuodong Jin
- Dan Tao
- Peng Qi 0006
- Ruipeng Gao
tldr: "Builds dynamic workload portraits per tenant and matches them to resource quotas in real time, improving utilization while respecting SLAs in IaaS/PaaS clouds."
why_notable: "Moves beyond static quota assignment with a data-driven approach validated on production cloud workload traces."
- title: "Aggregate Monitoring for Geo-Distributed Kubernetes Cluster Federations"
authors:
- Chih-Kai Huang 0001
- Guillaume Pierre
tldr: "Proposes a scalable monitoring architecture for Kubernetes federations that aggregates metrics across geo-distributed clusters with low overhead."
why_notable: "Practical multi-cloud observability is rarely addressed at the federation layer; this work provides a deployable solution with measured performance on real clusters."
- title: "Root Cause Analysis for Cloud-Native Applications"
authors:
- Bartosz Zurkowski
- Krzysztof Zielinski
tldr: "A graph-based RCA framework for microservice architectures that correlates traces, metrics, and logs to pinpoint fault origins in cloud-native deployments."
why_notable: "Directly applicable to production microservice operations, offering automated diagnosis that reduces mean time to recovery in complex service graphs."
- title: "RAM: A Resource-Aware DDoS Attack Mitigation Framework in Clouds"
authors:
- Fangyuan Xing
- Fei Tong 0001
- Jialong Yang
- Guang Cheng 0001
- Shibo He
tldr: "RAM dynamically allocates cloud resources for DDoS mitigation based on attack intensity, balancing protection effectiveness against resource cost."
why_notable: "Combines attack detection and elastic resource provisioning in a single framework, making it immediately relevant for cloud security operations."
- title: "Enabling Multi-Layer Threat Analysis in Dynamic Cloud Environments"
authors:
- Salman Manzoor
- Antonios Gouglidis
- Matthew Bradbury
- Neeraj Suri
tldr: "A multi-layer threat analysis system that correlates security events across IaaS, PaaS, and application layers to detect composite attacks in dynamic cloud deployments."
why_notable: "Addresses the gap between per-layer security tools and cross-layer attack detection, which is critical for securing modern cloud stacks."
- title: "Hyperion: Hardware-Based High-Performance and Secure System for Container Networks"
authors:
- Myoungsung You
- Minjae Seo
- Jaehan Kim
- Seungwon Shin 0001
- Jaehyun Nam
tldr: "Hyperion offloads container network security enforcement to programmable hardware, achieving line-rate packet processing with strong isolation guarantees."
why_notable: "Shows that hardware offload can simultaneously improve both throughput and security in container networking, with real implementation results."
- title: "D-STACK: High Throughput DNN Inference by Effective Multiplexing and Spatio-Temporal Scheduling of GPUs"
authors:
- Aditya Dhakal
- Sameer G. Kulkarni
- K. K. Ramakrishnan
tldr: "D-STACK multiplexes multiple DNN inference jobs on shared GPUs via spatio-temporal scheduling, significantly increasing throughput without latency SLO violations."
why_notable: "Addresses a critical cloud resource management challenge for AI inference services, with a real system implementation and evaluation against production workloads."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,129 @@
venue: TCC
year: 2025
selected:
- title: "DRKC: Deep Reinforcement Learning Enhanced Microservice Scheduling on Kubernetes Clusters in Cloud-Edge Environment"
authors:
- Jian Jiang
- Qianmu Li
- Pengchuan Wang
- Yunhuai Liu
tldr: "DRKC uses deep reinforcement learning to schedule microservices across Kubernetes clusters spanning cloud and edge nodes, optimizing latency and resource utilization."
why_notable: "One of the few papers to tackle DRL-based microservice placement at the Kubernetes level in a real cloud-edge topology, making it directly actionable for practitioners."
- title: "DesFaaS: Cross-Layer Joint Dynamic Deployment System for Serverless Stateful Functions"
authors:
- Yuquan Jing
- Binbin Feng
- Zhijun Ding
tldr: "DesFaaS jointly optimizes the placement and lifecycle of stateful serverless functions across compute, network, and storage layers to reduce latency and cost."
why_notable: "Addresses the hard problem of state management in FaaS by co-designing across layers, opening a new direction for stateful serverless architectures."
- title: "CARL: Cost-Optimized Online Container Placement on VMs Using Adversarial Reinforcement Learning"
authors:
- Prathamesh Saraf Vinayak
- Saswat Subhajyoti Mallick
- Lakshmi Jagarlamudi
- Anirban Chakraborty 0001
- Yogesh Simmhan
tldr: "CARL applies adversarial reinforcement learning to online container bin-packing on cloud VMs, minimizing cost while handling adversarial workload patterns."
why_notable: "The adversarial training objective makes the scheduler robust to worst-case workload shifts, a significant advance over standard RL-based placement."
- title: "CADER: Cost-Efficient Cloud Application Deployment With Tenant Requirement Guarantee in Multi-Clouds"
authors:
- Huaqing Tu
- Ziqiang Hua
- Qianpiao Ma
- Hanguang Luo
- Tao Zou
- Gongming Zhao
- Hongli Xu 0001
tldr: "CADER places cloud application components across multiple providers to minimize cost while enforcing per-tenant SLA and data-locality constraints."
why_notable: "Provides a rigorous multi-cloud placement framework that balances cost and tenant requirements, directly addressing a key challenge in multi-cloud SaaS/PaaS deployments."
- title: "Cloud Load Balancers Need to Stay Off the Data Path"
authors:
- Yuchen Zhang
- Shuai Jin
- Zhenyu Wen
- Shibo He
- Qingzheng Hou
- Yang Song
- Zhigang Zong
- Xiaomin Wu
- Bengbeng Xue
- Chenghao Sun
- Ku Li
- Xing Li 0007
- Biao Lyu
- Rong Wen
- Jiming Chen 0001
- Shunmin Zhu
tldr: "Based on large-scale production experience, this paper argues and demonstrates that cloud load balancers should operate out-of-band to eliminate throughput bottlenecks at scale."
why_notable: "A rare production-grounded architectural insight from a major cloud provider that challenges conventional in-path load balancer designs."
- title: "PHOENIX: Misconfiguration Detection for AWS Serverless Computing"
authors:
- Jinfeng Wen
- Haodi Ping
tldr: "PHOENIX automatically detects security and correctness misconfigurations in AWS Lambda deployments by analyzing IAM policies, triggers, and function configurations."
why_notable: "Serverless misconfiguration is a leading cause of cloud security incidents; PHOENIX provides an automated, deployable detection tool for AWS environments."
- title: "FaaSScout: Fast and Full Lifecycle RCA for FaaS Applications Using Salient Feature Mining"
authors:
- Min Li 0065
- Jin Huang
- Pengfei Chen 0002
- Chongkang Tan
tldr: "FaaSScout performs root cause analysis across the full FaaS invocation lifecycle by mining salient features from traces and logs to localize faults quickly."
why_notable: "Fills a critical operational gap for serverless: fast, automated fault diagnosis that covers cold starts, platform issues, and application errors in a unified framework."
- title: "Hybrid Serverless Platform for Smart Deployment of Service Function Chains"
authors:
- Sheshadri K. R
- J. Lakshmi
tldr: "A hybrid serverless platform that intelligently places NFV service function chains on serverless infrastructure, reducing provisioning overhead while meeting latency targets."
why_notable: "Bridges serverless computing and NFV, demonstrating that serverless abstractions can be applied to network function deployment with competitive performance."
- title: "PiCoP: Service Mesh for Sharing Microservices in Multiple Environments Using Protocol-Independent Context Propagation"
authors:
- Hiroya Onoe
- Daisuke Kotani
- Yasuo Okabe
tldr: "PiCoP extends service mesh capabilities to span heterogeneous protocol environments by providing protocol-independent context propagation for distributed microservice tracing and control."
why_notable: "Solves a practical multi-cloud and hybrid deployment challenge where microservices communicate over different protocols, enabling unified observability and policy enforcement."
- title: "A Reference Architecture for Governance of Cloud Native Applications"
authors:
- William Pourmajidi
- Lei Zhang 0078
- John Steinbacher
- Tony Erwin
- Andriy V. Miranskyy
tldr: "Proposes and validates a reference architecture that unifies policy enforcement, compliance, and lifecycle governance for cloud-native applications across deployment environments."
why_notable: "Provides a vendor-neutral governance blueprint grounded in industry practice, filling a gap between DevOps tooling and organizational cloud compliance requirements."
- title: "Observability and Incident Response in Managed Serverless Environments Using Ontology-Based Log Monitoring"
authors:
- Lavi Ben-Shimol
- Edita Grolman
- Aviad Elyashar
- Inbar Maimon
- Dudu Mimran
- Oleg Brodt
- Martin Strassmann
- Heiko Lehmann
- Yuval Elovici
- Asaf Shabtai
tldr: "Uses an ontology-based approach to monitor serverless function logs, enabling structured incident detection and response in managed FaaS environments."
why_notable: "Brings structured knowledge representation to serverless observability, enabling richer incident correlation than rule-based or purely ML-based log monitors."
- title: "A Run-Time Framework for Ensuring Zero-Trust State of Client's Machines in Cloud Environment"
authors:
- Devki Nandan Jha
- Graham Lenton
- James Asker
- David Blundell
- Martin Higgins
- David C. H. Wallom
tldr: "A runtime attestation framework continuously verifies the security posture of client machines accessing cloud resources, enforcing zero-trust policies based on live system state."
why_notable: "Moves zero-trust enforcement from static policy configuration to continuous runtime verification, addressing a key gap in current cloud access control models."

View File

@@ -0,0 +1,127 @@
venue: TOCS
year: 2024
source: dblp
count: 9
papers:
- title: 'PMAlloc: A Holistic Approach to Improving Persistent Memory Allocation'
authors:
- Zheng Dang
- Shuibing He
- Xuechen Zhang 0001
- Peiyi Hong
- Zhenxin Li
- Xinyu Chen
- Haozhe Song
- Xian-He Sun
- Gang Chen 0001
year: '2024'
doi: 10.1145/3643886
url: https://doi.org/10.1145/3643886
dblp_key: journals/tocs/DangHZHLCSSC24
venue_name: ACM Trans. Comput. Syst.
pages: 1-52
- title: 'Boki: Towards Data Consistency and Fault Tolerance with Shared Logs in Stateful
Serverless Computing'
authors:
- Zhipeng Jia
- Emmett Witchel
year: '2024'
doi: 10.1145/3653072
url: https://doi.org/10.1145/3653072
dblp_key: journals/tocs/JiaW24
venue_name: ACM Trans. Comput. Syst.
pages: 1-35
- title: 'Diciclo: Flexible User-level Services for Efficient Multitenant Isolation'
authors:
- Giorgos Kappes
- Stergios V. Anastasiadis
year: '2024'
doi: 10.1145/3639404
url: https://doi.org/10.1145/3639404
dblp_key: journals/tocs/KappesA24
venue_name: ACM Trans. Comput. Syst.
pages: 3:1-3:47
- title: 'SPATA: Effective OS Bug Detection with Summary-Based, Alias-Aware, and Path-Sensitive
Typestate Analysis'
authors:
- Tuo Li
- Jia-Ju Bai
- Yulei Sui
- Shi-Min Hu 0001
year: '2024'
doi: 10.1145/3695250
url: https://doi.org/10.1145/3695250
dblp_key: journals/tocs/LiBSH24
venue_name: ACM Trans. Comput. Syst.
pages: 1-40
- title: 'Trinity: High-Performance and Reliable Mobile Emulation through Graphics
Projection'
authors:
- Hao Lin 0005
- Zhenhua Li 0001
- Di Gao
- Yunhao Liu 0001
- Feng Qian 0001
- Tianyin Xu
- Bo Xiao
- Xiaokang Qin
year: '2024'
doi: 10.1145/3643029
url: https://doi.org/10.1145/3643029
dblp_key: journals/tocs/LinLGLQXXQ24
venue_name: ACM Trans. Comput. Syst.
pages: 1-33
- title: 'Optimizing Resource Management for Shared Microservices: A Scalable System
Design'
authors:
- Shutian Luo
- Chenyu Lin
- Kejiang Ye
- Guoyao Xu
- Liping Zhang 0013
- Guodong Yang
- Huanle Xu
- Cheng-Zhong Xu 0001
year: '2024'
doi: 10.1145/3631607
url: https://doi.org/10.1145/3631607
dblp_key: journals/tocs/LuoLYXZYXX24
venue_name: ACM Trans. Comput. Syst.
pages: 1:1-1:28
- title: Hardware-Software Collaborative Tiered-Memory Management Framework for Virtualization
authors:
- Sai Sha
- Chuandong Li 0004
- Xiaolin Wang 0001
- Zhenlin Wang 0003
- Yingwei Luo
year: '2024'
doi: 10.1145/3639564
url: https://doi.org/10.1145/3639564
dblp_key: journals/tocs/ShaLWWL24
venue_name: ACM Trans. Comput. Syst.
pages: 4:1-4:32
- title: Editorial
authors: []
year: '2024'
doi: 10.1145/3696656
url: https://doi.org/10.1145/3696656
dblp_key: journals/tocs/X24
venue_name: ACM Trans. Comput. Syst.
pages: 1-2
- title: Component-distinguishable Co-location and Resource Reclamation for High-throughput
Computing
authors:
- Laiping Zhao
- Yushuai Cui
- Yanan Yang
- Xiaobo Zhou 0003
- Tie Qiu 0001
- Keqiu Li
- Yungang Bao
year: '2024'
doi: 10.1145/3630006
url: https://doi.org/10.1145/3630006
dblp_key: journals/tocs/ZhaoCYZQLB24
venue_name: ACM Trans. Comput. Syst.
pages: 2:1-2:37

View File

@@ -0,0 +1,80 @@
venue: TOCS
year: 2024
selected:
- title: "PMAlloc: A Holistic Approach to Improving Persistent Memory Allocation"
authors:
- Zheng Dang
- Shuibing He
- Xuechen Zhang
- Peiyi Hong
- Zhenxin Li
- Xinyu Chen
- Haozhe Song
- Xian-He Sun
- Gang Chen
tldr: "PMAlloc redesigns persistent memory allocation end-to-end, co-optimizing the allocator's data structures, concurrency, and crash consistency to dramatically reduce allocation overhead."
why_notable: "Persistent memory is still poorly understood at the allocator level; this paper offers a rare holistic treatment that will inform future PM software stacks."
- title: "Boki: Towards Data Consistency and Fault Tolerance with Shared Logs in Stateful Serverless Computing"
authors:
- Zhipeng Jia
- Emmett Witchel
tldr: "Boki introduces a shared-log abstraction for serverless functions that provides strong consistency and fault tolerance without requiring developers to manage state explicitly."
why_notable: "It reframes stateful serverless as a log-centric problem, offering a clean systems primitive that substantially simplifies correctness guarantees in function-as-a-service platforms."
- title: "Diciclo: Flexible User-level Services for Efficient Multitenant Isolation"
authors:
- Giorgos Kappes
- Stergios V. Anastasiadis
tldr: "Diciclo provides a user-level framework that lets services customize their isolation mechanisms without kernel modifications, reducing interference among co-located tenants."
why_notable: "Multitenant isolation in cloud systems is typically a blunt instrument; this work shows that flexible, low-overhead isolation can be achieved entirely in user space."
- title: "SPATA: Effective OS Bug Detection with Summary-Based, Alias-Aware, and Path-Sensitive Typestate Analysis"
authors:
- Tuo Li
- Jia-Ju Bai
- Yulei Sui
- Shi-Min Hu
tldr: "SPATA applies a summary-based, alias-aware, and path-sensitive typestate analysis to detect resource-management bugs in OS kernels at scale."
why_notable: "Finding use-after-free and double-free bugs in OS code remains an open challenge; SPATA's precision improvements over prior static analyses make it a practical tool for kernel hardening."
- title: "Trinity: High-Performance and Reliable Mobile Emulation through Graphics Projection"
authors:
- Hao Lin
- Zhenhua Li
- Di Gao
- Yunhao Liu
- Feng Qian
- Tianyin Xu
- Bo Xiao
- Xiaokang Qin
tldr: "Trinity projects GPU rendering workloads from a mobile device onto a remote high-performance GPU, enabling faithful, high-throughput mobile emulation."
why_notable: "Mobile app testing at scale requires accurate emulation of GPU behavior; Trinity's graphics-projection design closes a long-standing fidelity gap in mobile emulators."
- title: "Optimizing Resource Management for Shared Microservices: A Scalable System Design"
authors:
- Shutian Luo
- Chenyu Lin
- Kejiang Ye
- Guoyao Xu
- Liping Zhang
- Guodong Yang
- Huanle Xu
- Cheng-Zhong Xu
tldr: "This paper presents a scalable resource-management system for shared microservices that reduces interference and improves utilization in large-scale production deployments."
why_notable: "Microservice co-location is the norm in modern clouds, yet managing their shared resources at scale remains unsolved; this work delivers practical, production-validated answers."
- title: "Hardware-Software Collaborative Tiered-Memory Management Framework for Virtualization"
authors:
- Sai Sha
- Chuandong Li
- Xiaolin Wang
- Zhenlin Wang
- Yingwei Luo
tldr: "A hardware-software co-design framework that transparently manages hot/cold data placement across DRAM and slower memory tiers inside virtual machines."
why_notable: "As CXL-attached and NVM memory tiers become mainstream in data centers, principled tiered-memory management in hypervisors becomes critical; this paper provides a solid baseline."
- title: "Component-distinguishable Co-location and Resource Reclamation for High-throughput Computing"
authors:
- Laiping Zhao
- Yushuai Cui
- Yanan Yang
- Xiaobo Zhou
- Tie Qiu
- Keqiu Li
- Yungang Bao
tldr: "This system differentiates micro-components of co-located workloads to reclaim idle resources precisely, boosting overall cluster throughput without violating SLOs."
why_notable: "Coarse-grained co-location wastes significant cluster capacity; the component-level granularity introduced here sets a new standard for resource-reclamation systems."

View File

@@ -0,0 +1,180 @@
venue: TOCS
year: 2025
source: dblp
count: 13
papers:
- title: Whole-system Persistence Made Efficient with Tree-structured Checkpointing
on Microkernel
authors:
- Mingkai Dong 0002
- Fangnuo Wu
- Gequan Mo
- Haibo Chen 0001
year: '2025'
doi: 10.1145/3742425
url: https://doi.org/10.1145/3742425
dblp_key: journals/tocs/DongWMC25
venue_name: ACM Trans. Comput. Syst.
pages: 1-29
- title: 'XpuTEE: A High-Performance and Practical Heterogeneous Trusted Execution
Environment for GPUs'
authors:
- Shulin Fan
- Zhichao Hua 0001
- Yubin Xia
- Haibo Chen 0001
year: '2025'
doi: 10.1145/3719653
url: https://doi.org/10.1145/3719653
dblp_key: journals/tocs/FanHXC25
venue_name: ACM Trans. Comput. Syst.
pages: 1-27
- title: Introduction to the Special Section on SOSP 2023
authors:
- Jason Flinn
- Margo I. Seltzer
year: '2025'
doi: 10.1145/3744676
url: https://doi.org/10.1145/3744676
dblp_key: journals/tocs/FlinnS25
venue_name: ACM Trans. Comput. Syst.
pages: 1-2
- title: 'RegVault II: Achieving Hardware-Assisted Selective Kernel Data Randomization
for Multiple Architectures'
authors:
- Ruorong Guo
- Yangye Zhou
- Jinyan Xu
- Wenbo Shen
- Yajin Zhou
- Rui Chang
year: '2025'
doi: 10.1145/3734521
url: https://doi.org/10.1145/3734521
dblp_key: journals/tocs/GuoZXSZC25
venue_name: ACM Trans. Comput. Syst.
pages: 1-34
- title: Validating JIT Compilers via Compilation Space Exploration
authors:
- Cong Li 0003
- Yanyan Jiang 0001
- Chang Xu 0001
- Zhendong Su 0001
year: '2025'
doi: 10.1145/3715102
url: https://doi.org/10.1145/3715102
dblp_key: journals/tocs/LiJXS25
venue_name: ACM Trans. Comput. Syst.
pages: 1-37
- title: Freezing-based Memory and Process Co-design for User Experience on Resource-limited
Mobile Devices
authors:
- Changlong Li 0006
- Zongwei Zhu
- Chun Jason Xue
- Yu Liang 0004
- Rachata Ausavarungnirun
- Liang Shi 0001
- Xuehai Zhou
year: '2025'
doi: 10.1145/3714409
url: https://doi.org/10.1145/3714409
dblp_key: journals/tocs/LiZXLASZ25
venue_name: ACM Trans. Comput. Syst.
pages: 1-29
- title: Analyzing Configuration Dependencies of File Systems
authors:
- Tabassum Mahmud
- Om Rameshwar Gatla
- Duo Zhang
- Carson Love
- Ryan Bumann
- Varun S. Girimaji
- Mai Zheng
year: '2025'
doi: 10.1145/3747177
url: https://doi.org/10.1145/3747177
dblp_key: journals/tocs/MahmudGZLBGZ25
venue_name: ACM Trans. Comput. Syst.
pages: 14:1-14:28
- title: Efficient Fault Tolerance for Stateful Serverless Computing with Asymmetric
Logging
authors:
- Sheng Qi
- Haoyu Feng
- Xuanzhe Liu
- Xin Jin 0008
year: '2025'
doi: 10.1145/3725985
url: https://doi.org/10.1145/3725985
dblp_key: journals/tocs/QiFLJ25
venue_name: ACM Trans. Comput. Syst.
pages: 1-43
- title: 'TraceScaler: A Framework for Scaling Load in Real-World Traces for System
Evaluation'
authors:
- Sultan Mahmud Sajal
- Salman Estyak
- Rubaba Hasan
- Timothy Zhu
- Bhuvan Urgaonkar
- Siddhartha Sen 0001
year: '2025'
doi: 10.1145/3760774
url: https://doi.org/10.1145/3760774
dblp_key: journals/tocs/SajalEHZUS25
venue_name: ACM Trans. Comput. Syst.
pages: 12:1-12:31
- title: Introduction to the Special Section on EuroSys 2024
authors:
- Bianca Schroeder
- Mark Silberstein
year: '2025'
doi: 10.1145/3768140
url: https://doi.org/10.1145/3768140
dblp_key: journals/tocs/SchroederS25
venue_name: ACM Trans. Comput. Syst.
pages: 10:1-10:2
- title: Towards Serialization/Deserialization-free State Transfer in Serverless Workflows
authors:
- Xingda Wei
- Fangming Lu
- Zhuobin Huang
- Rong Chen 0001
- Mingyu Wu 0001
- Haibo Chen 0001
year: '2025'
doi: 10.1145/3725986
url: https://doi.org/10.1145/3725986
dblp_key: journals/tocs/WeiLHCWC25
venue_name: ACM Trans. Comput. Syst.
pages: 11:1-11:32
- title: Enabling Anonymous Online Streaming Analytics at the Network Edge
authors:
- Yunming Xiao
- Yanqi Gu
- Yibo Zhao
- Sen Lin 0009
- Aleksandar Kuzmanovic
year: '2025'
doi: 10.1145/3746130
url: https://doi.org/10.1145/3746130
dblp_key: journals/tocs/XiaoGZLK25
venue_name: ACM Trans. Comput. Syst.
pages: 13:1-13:39
- title: 'LCL+: a Lock Chain Length-based Distributed Deadlock Detection and Resolution
Service Built for OceanBase'
authors:
- Zhenkun Yang
- Chen Qian
- Xuwang Teng
- Fanyu Kong 0004
- Fusheng Han
- Quanqing Xu
- Daokun Hu
year: '2025'
doi: 10.1145/3768621
url: https://doi.org/10.1145/3768621
dblp_key: journals/tocs/YangQTKHXH25
venue_name: ACM Trans. Comput. Syst.
pages: 15:1-15:33

View File

@@ -0,0 +1,97 @@
venue: TOCS
year: 2025
selected:
- title: "Whole-system Persistence Made Efficient with Tree-structured Checkpointing on Microkernel"
authors:
- Mingkai Dong
- Fangnuo Wu
- Gequan Mo
- Haibo Chen
tldr: "A microkernel-based whole-system persistence scheme uses tree-structured incremental checkpointing to achieve low-overhead, crash-consistent snapshots of the entire OS state."
why_notable: "Whole-system persistence is a foundational building block for reliable systems; this paper shows it can be done efficiently within a microkernel architecture."
- title: "XpuTEE: A High-Performance and Practical Heterogeneous Trusted Execution Environment for GPUs"
authors:
- Shulin Fan
- Zhichao Hua
- Yubin Xia
- Haibo Chen
tldr: "XpuTEE extends trusted execution environments to GPUs by designing a hardware-assisted isolation mechanism that protects GPU computations with low performance overhead."
why_notable: "As GPUs process sensitive ML workloads in shared clouds, TEE support for accelerators is urgently needed; XpuTEE is a comprehensive and practical solution."
- title: "RegVault II: Achieving Hardware-Assisted Selective Kernel Data Randomization for Multiple Architectures"
authors:
- Ruorong Guo
- Yangye Zhou
- Jinyan Xu
- Wenbo Shen
- Yajin Zhou
- Rui Chang
tldr: "RegVault II uses hardware features to selectively randomize sensitive kernel data structures at runtime across multiple ISAs, raising the bar for kernel exploitation."
why_notable: "Kernel data-only attacks bypass existing code-randomization defenses; this work's multi-architecture approach makes selective data randomization practical for production kernels."
- title: "Validating JIT Compilers via Compilation Space Exploration"
authors:
- Cong Li
- Yanyan Jiang
- Chang Xu
- Zhendong Su
tldr: "Compilation space exploration systematically generates and tests the large space of valid JIT compilation outcomes to find miscompilation bugs in production JIT compilers."
why_notable: "JIT correctness is notoriously hard to test; this paper's systematic exploration strategy finds real bugs in widely-used runtimes and advances the state of compiler validation."
- title: "Freezing-based Memory and Process Co-design for User Experience on Resource-limited Mobile Devices"
authors:
- Changlong Li
- Zongwei Zhu
- Chun Jason Xue
- Yu Liang
- Rachata Ausavarungnirun
- Liang Shi
- Xuehai Zhou
tldr: "A co-designed memory and process management scheme freezes background processes at fine granularity to reclaim memory while preserving fast resume latency on constrained mobile hardware."
why_notable: "Mobile memory pressure directly degrades user experience; this paper's co-design perspective yields measurable improvements on real devices with limited resources."
- title: "Analyzing Configuration Dependencies of File Systems"
authors:
- Tabassum Mahmud
- Om Rameshwar Gatla
- Duo Zhang
- Carson Love
- Ryan Bumann
- Varun S. Girimaji
- Mai Zheng
tldr: "This work systematically analyzes the dependency graph among file-system configuration options to reveal hidden interactions that lead to silent data corruption or crashes."
why_notable: "File-system misconfiguration is a major source of data loss in practice; understanding configuration dependencies is essential for building safer storage systems."
- title: "Efficient Fault Tolerance for Stateful Serverless Computing with Asymmetric Logging"
authors:
- Sheng Qi
- Haoyu Feng
- Xuanzhe Liu
- Xin Jin
tldr: "Asymmetric logging decouples the logging cost between the fast and slow paths of stateful serverless functions, enabling low-overhead fault tolerance without sacrificing recovery guarantees."
why_notable: "Fault tolerance for stateful serverless remains an open performance challenge; this paper's asymmetric design significantly reduces logging overhead compared to symmetric approaches."
- title: "Towards Serialization/Deserialization-free State Transfer in Serverless Workflows"
authors:
- Xingda Wei
- Fangming Lu
- Zhuobin Huang
- Rong Chen
- Mingyu Wu
- Haibo Chen
tldr: "This system eliminates serialization and deserialization costs when passing state between serverless functions by enabling direct in-memory state transfer across workflow stages."
why_notable: "Ser/deser overhead is a dominant cost in serverless workflows; removing it fundamentally changes the performance profile of function chaining at scale."
- title: "Enabling Anonymous Online Streaming Analytics at the Network Edge"
authors:
- Yunming Xiao
- Yanqi Gu
- Yibo Zhao
- Sen Lin
- Aleksandar Kuzmanovic
tldr: "This paper designs an edge-based streaming analytics framework that enforces differential privacy while processing high-throughput data streams with low latency."
why_notable: "Privacy-preserving analytics at the edge is increasingly required by regulation and user expectation; this system shows it can be done at practical streaming throughputs."
- title: "LCL+: a Lock Chain Length-based Distributed Deadlock Detection and Resolution Service Built for OceanBase"
authors:
- Zhenkun Yang
- Chen Qian
- Xuwang Teng
- Fanyu Kong
- Fusheng Han
- Quanqing Xu
- Daokun Hu
tldr: "LCL+ detects and resolves distributed deadlocks in the OceanBase database by tracking lock-chain lengths across nodes, achieving low overhead with fast detection latency."
why_notable: "Deadlock detection in large-scale distributed databases is an unsolved production problem; this paper presents a battle-tested algorithm deployed in a major commercial system."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,154 @@
venue: TPDS
year: 2024
selected:
- title: "Runtime Performance Anomaly Diagnosis in Production HPC Systems Using Active
Learning"
authors:
- Burak Aksar
- Efe Sencan
- Benjamin Schwaller
- Omar Aaziz
- Vitus J. Leung
- Jim M. Brandt
- Brian Kulis
- Manuel Egele
- Ayse K. Coskun
tldr: "An active-learning framework automatically diagnoses runtime performance anomalies in production HPC systems by querying targeted job profiles to minimize labeling effort."
why_notable: "It bridges ML-based anomaly detection and operational HPC monitoring, demonstrating scalable root-cause identification on real supercomputer workloads."
- title: "AutoDDL: Automatic Distributed Deep Learning With Near-Optimal Bandwidth
Cost"
authors:
- Jinfan Chen
- Shigang Li 0002
- Ran Guo
- Jinhui Yuan
- Torsten Hoefler
tldr: "AutoDDL automatically searches for the distributed DNN training strategy that minimizes communication bandwidth cost while meeting performance targets."
why_notable: "Combining Hoefler's communication-model expertise with automatic strategy search, this paper is essential reading for practitioners scaling DNN training across large clusters."
- title: "PeakFS: An Ultra-High Performance Parallel File System via Computing-Network-Storage
Co-Optimization for HPC Applications"
authors:
- Yixiao Chen
- Haomai Yang
- Kai Lu 0002
- Wenlve Huang
- Jibin Wang
- Jiguang Wan 0001
- Jian Zhou 0004
- Fei Wu 0005
- Changsheng Xie 0001
tldr: "PeakFS co-optimizes compute, network, and storage layers of a parallel file system to deliver ultra-high I/O throughput for HPC workloads."
why_notable: "Its holistic co-design perspective sets a new performance baseline for HPC storage and provides actionable insights for next-generation parallel file system architects."
- title: "Formal Definitions and Performance Comparison of Consistency Models for Parallel
File Systems"
authors:
- Chen Wang 0004
- Kathryn M. Mohror
- Marc Snir
tldr: "This paper formalizes consistency models used by parallel file systems and provides the first systematic empirical comparison of their performance trade-offs."
why_notable: "Rigorous formal treatment from Snir and Mohror clarifies long-standing ambiguities in HPC storage semantics, making it an important reference for storage system designers."
- title: "Malleability in Modern HPC Systems: Current Experiences, Challenges, and
Future Opportunities"
authors:
- Ahmad Tarraf
- Martin Schreiber 0001
- Alberto Cascajo
- Jean-Baptiste Besnard
- Marc-André Vef
- Dominik Huber
- Sonja Happ
- André Brinkmann
- David E. Singh
- Hans-Christian Hoppe
- Alberto Miranda
- Antonio J. Peña
- Rui Machado
- Marta Garcia-Gasulla
- Martin Schulz 0001
- Paul M. Carpenter
- Simon Pickartz
- Tiberiu Rotaru
- Sergio Iserte
- Víctor López 0003
- Jorge Ejarque
- Heena Sirwani
- Jesús Carretero 0001
- Felix Wolf 0001
tldr: "A comprehensive survey of dynamic resource malleability in HPC, covering runtime systems, job schedulers, and application-level support with lessons from production systems."
why_notable: "As energy-aware and burst-resilient HPC scheduling becomes critical, this broad community-driven survey is the definitive starting point for research on malleable HPC runtimes."
- title: "Pyxis: Scheduling Mixed Tasks in Disaggregated Datacenters"
authors:
- Sheng Qi
- Chao Jin
- Mosharaf Chowdhury
- Zhenming Liu
- Xuanzhe Liu
- Xin Jin 0008
tldr: "Pyxis is a scheduler for disaggregated datacenters that jointly manages latency-sensitive and batch tasks by exploiting flexible resource pooling across the disaggregated fabric."
why_notable: "It tackles one of the central open problems in cloud scheduling—multi-tenancy under disaggregation—with rigorous analysis and demonstrated gains on real workloads."
- title: "Swift: Expedited Failure Recovery for Large-Scale DNN Training"
authors:
- Yuchen Zhong
- Guangming Sheng
- Juncheng Liu
- Jinhui Yuan
- Chuan Wu 0001
tldr: "Swift dramatically reduces checkpoint and recovery overhead for large-scale DNN training by combining lightweight in-memory snapshots with selective recomputation."
why_notable: "As training runs on hundreds of GPUs grow longer and failures become inevitable, Swift's fault-tolerance approach directly addresses a practical bottleneck in modern deep-learning infrastructure."
- title: "FastLoad: Speeding Up Data Loading of Both Sparse Matrix and Vector for SpMV
on GPUs"
authors:
- Jinyu Hu
- Huizhang Luo
- Hong Jiang 0001
- Guoqing Xiao 0001
- Kenli Li 0001
tldr: "FastLoad optimizes the memory-access pattern for loading both the sparse matrix and the dense vector in SpMV on GPUs, yielding significant throughput improvements."
why_notable: "SpMV is a foundational kernel for scientific computing and graph analytics; this paper's memory-access analysis and optimizations benefit a wide class of GPU applications."
- title: "KLNK: Expanding Page Boundaries in a Distributed Shared Memory System"
authors:
- Yiwei Ci
- Michael R. Lyu
- Zhan Zhang 0002
- De-Cheng Zuo
- Xiao-Zong Yang
tldr: "KLNK extends distributed shared memory page granularity to reduce false sharing and improve throughput for irregular access patterns."
why_notable: "It addresses a classic but unsolved bottleneck in DSM systems with a practical, page-table-level mechanism applicable to emerging disaggregated memory architectures."
- title: "Enabling Efficient Erasure Coding in Disaggregated Memory Systems"
authors:
- Qiliang Li
- Liangliang Xu
- Yongkun Li 0001
- Min Lyu
- Wei Wang 0502
- Pengfei Zuo
- Yinlong Xu 0001
tldr: "This paper designs an erasure-coding scheme tailored to disaggregated memory, exploiting its unique bandwidth topology to achieve fault tolerance with low overhead."
why_notable: "Fault tolerance in disaggregated memory is an open problem of growing importance; this work provides concrete mechanisms and strong performance results."
- title: "Simple, Fast and Widely Applicable Concurrent Memory Reclamation via Neutralization"
authors:
- Ajay Singh 0002
- Trevor Alexander Brown
- Ali José Mashtizadeh
tldr: "Neutralization is a new mechanism for safe memory reclamation in lock-free data structures that is simpler, faster, and more portable than prior approaches."
why_notable: "Safe memory reclamation is a pervasive challenge in concurrent programming; this algorithm's breadth of applicability and performance improvements make it highly reusable."
- title: "DeepTM: Efficient Tensor Management in Heterogeneous Memory for DNN Training"
authors:
- Haoran Zhou
- Wei Rang
- Hongyang Chen 0001
- Xiaobo Zhou 0002
- Dazhao Cheng
tldr: "DeepTM dynamically manages tensor placement across DRAM and NVM during DNN training to reduce memory pressure and improve throughput."
why_notable: "As model sizes outpace GPU memory, heterogeneous memory management becomes critical; DeepTM provides a practical, training-aware solution with measurable benefits."

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,145 @@
venue: TPDS
year: 2025
selected:
- title: "HARMONIC: Uncertainty-Aware Multi-Objective Optimization for Energy-Efficient
HPC Resource Management"
authors:
- Kyrian Adimora
- Hongyang Sun 0001
tldr: "HARMONIC applies uncertainty-aware multi-objective optimization to jointly minimize energy consumption and maximize performance for HPC resource allocation."
why_notable: "It directly addresses the growing demand for energy-proportional HPC scheduling with principled probabilistic models, making it relevant to both system designers and green-computing researchers."
- title: "MIST: Towards MPI Instant Startup and Termination on Tianhe HPC Systems"
authors:
- Yiqin Dai
- Ruibo Wang
- Yong Dong
- Min Xie
- Juan Chen 0001
- Wenzhe Zhang
- Huijun Wu 0001
- Mingtian Shao
- Kai Lu 0001
tldr: "MIST reduces MPI job startup and termination latency to near-instant on the Tianhe supercomputer by redesigning the process-management and communication-bootstrap path."
why_notable: "Startup overhead is a significant fraction of short-job turnaround time at scale; MIST's results on a top-ranked system provide a concrete reference for HPC runtime developers."
- title: "Scheduling With Lightweight Predictions in Power-Constrained HPC Platforms"
authors:
- Danilo Carastan-Santos
- Georges Da Costa
- Igor Fontana De Nardin
- Millian Poquet
- Krzysztof Rzadca
- Patricia Stolf
- Denis Trystram
tldr: "This paper develops a scheduling framework that uses lightweight runtime predictions to respect power caps on HPC systems while minimizing job slowdown."
why_notable: "Power capping is now a first-class constraint on modern supercomputers, and this work from leading European HPC scheduling researchers offers practical, deployable algorithms."
- title: "PipeMesh: Achieving Memory-Efficient Computation-Communication Overlap for
Training Large Language Models"
authors:
- Fanxin Li
- Shixiong Zhao
- Yuhao Qing
- Jianyu Jiang
- Xusheng Chen
- Heming Cui
tldr: "PipeMesh overlaps pipeline-parallel computation and communication for LLM training while carefully managing memory to avoid out-of-memory failures."
why_notable: "Communication-computation overlap is one of the most impactful levers for LLM training efficiency, and PipeMesh's memory-awareness addresses the key practical constraint."
- title: "EfficientMoE: Optimizing Mixture-of-Experts Model Training With Adaptive Load
Balance"
authors:
- Yan Zeng
- Chengchuang Huang
- Yipeng Mei
- Lifu Zhang 0004
- Teng Su
- Wei Ye
- Wenqi Shi
- Shengnan Wang
tldr: "EfficientMoE introduces an adaptive load-balancing strategy for Mixture-of-Experts training that equalizes expert utilization and reduces communication bottlenecks."
why_notable: "MoE models are central to frontier LLM architectures, and load imbalance is their primary training inefficiency; this work provides both analysis and a practical solution."
- title: "SSpMM: Efficiently Scalable SpMM Kernels Across Multiple Generations of Tensor
Cores"
authors:
- Zeyu Xue
- Mei Wen
- Jianchao Yang
- Minjin Tang
- Zhongdi Luo
- Jing Feng
- Yang Shi 0008
- Zhaoyun Chen
- Junzhong Shen
- Johannes Langguth
tldr: "SSpMM delivers portable, high-performance sparse-matrix dense-matrix multiplication kernels that scale efficiently across Ampere, Hopper, and future Tensor Core generations."
why_notable: "SpMM is a bottleneck in GNN training and scientific computing; cross-generation portability without performance loss is a significant contribution for the GPU computing community."
- title: "IceFrog: A Layer-Elastic Scheduling System for Deep Learning Training in GPU
Clusters"
authors:
- Wei Gao 0064
- Zhuoyuan Ouyang
- Peng Sun 0006
- Tianwei Zhang 0004
- Yonggang Wen 0001
tldr: "IceFrog dynamically adjusts the number of pipeline stages (layers) assigned to each GPU during training to adapt to cluster heterogeneity and improve utilization."
why_notable: "Layer elasticity is a novel dimension of flexibility in distributed DNN training; IceFrog's scheduler provides measurable throughput gains in realistic heterogeneous GPU clusters."
- title: "Elastic Relaxation of Concurrent Data Structures"
authors:
- Kåre von Geijer
- Philippas Tsigas
tldr: "This paper introduces a formal framework and concrete algorithms for elastic relaxation of concurrent data structures, allowing tunable trade-offs between consistency and throughput."
why_notable: "Tsigas's group advances concurrent data-structure theory with a unifying formalism that subsumes many ad-hoc relaxed designs and enables provable guarantees."
- title: "Approximation Algorithms for Scheduling With/Without Deadline Constraints
Where Rejection Costs are Proportional to Processing Times"
authors:
- Olivier Beaumont
- Rémi Bouzel
- Lionel Eyraud-Dubois
- Esragul Korkmaz
- Laércio Lima Pilla
- Alexandre van Kempen
tldr: "This paper derives new approximation algorithms with tight ratios for online and offline scheduling problems where rejected jobs incur costs proportional to their processing times."
why_notable: "The theoretical results close open gaps in parallel scheduling complexity and are directly applicable to cloud and HPC batch schedulers that must handle job rejection."
- title: "EdgeHydra: Fault-Tolerant Edge Data Distribution Based on Erasure Coding"
authors:
- Qiang He 0001
- Guobiao Zhang
- Jiawei Wang 0003
- Ruikun Luo
- Xiaohai Dai
- Yuchong Hu
- Feifei Chen 0001
- Hai Jin 0001
- Yun Yang 0001
tldr: "EdgeHydra uses erasure coding tailored to edge-node failure patterns to provide fault-tolerant data distribution with low redundancy overhead at the network edge."
why_notable: "Fault tolerance at the edge is an increasingly critical requirement, and this system's erasure-coding approach significantly outperforms replication in storage efficiency."
- title: "Two-Dimensional Balanced Partitioning and Efficient Caching for Distributed
Graph Analysis"
authors:
- Shuai Lin
- Rui Wang 0076
- Yongkun Li 0001
- Yinlong Xu 0001
- John C. S. Lui
tldr: "This paper proposes a 2D balanced graph partitioning scheme combined with a caching policy that jointly minimizes communication and replication costs in distributed graph systems."
why_notable: "Graph partitioning and caching are co-dependent problems rarely treated together; the combined optimization yields substantial performance improvements with strong theoretical backing."
- title: "Towards Universal Performance Modeling for Machine Learning Training on Multi-GPU
Platforms"
authors:
- Zhongyi Lin
- Ning Sun
- Pallab Bhattacharya
- Xizhou Feng
- Louis Feng
- John D. Owens
tldr: "This work builds a platform-agnostic performance model for distributed ML training that accurately predicts training throughput across diverse multi-GPU configurations without per-system profiling."
why_notable: "A universal modeling framework from Owens's group removes the need for expensive empirical searches when tuning distributed training configurations, benefiting the entire ML systems community."