GPT中文GPT中文论坛社区AI大全点评百科AI培训去哪儿
GPT中文教育
首页找活动报名邀请 | 港科大(广州)- 新加坡国立大学人工智能前沿联合论坛
论坛 已结束

报名邀请 | 港科大(广州)- 新加坡国立大学人工智能前沿联合论坛

7月15日日期 09:00
论坛类型
免费票价
广州城市
已结束状态
📄 有存档原文
🗓 时间07-15 周三 09:00
📍 地点广州 · 线上
🏫 主办方港科大广州 I 人工智能学域
💴 票价免费
📌 状态已结束

活动概览

香港科技大学(广州)与新加坡国立大学共同举办人工智能前沿论坛。

👥 适合人工智能领域学者、校内师生
🎯 亮点 / 收获
  • 与顶尖学者面对面交流
  • 探讨前沿方向
  • 深化科研交流与合作
  • 搭建学术平台
ℹ️

活动信息依据公开来源整理,以主办方最新公告为准。如时间、地点、票价有变动,平台会更新并保留变更记录。报名前请通过原始来源核对。

活动详情

FUTURE

人工智能前沿联合论坛

2026.7.15 中国 | 广州

香港科技大学(广州)人工智能学域携手新加坡国立大学广州创新研究院,将于2026年7月15日共同举办人工智能前沿联合论坛

本次论坛汇聚两校及合作院校共9位深耕人工智能领域的学者,围绕大模型系统、具身智能、可信机器学习、生成式AI等前沿方向展开专题分享,旨在搭建高水平学术对话平台,集中呈现领域最新研究成果,探讨技术发展趋势,深化跨校科研交流与合作联结,也为校内师生提供与顶尖学者面对面交流的机会。欢迎感兴趣的师生踊跃参会。

01

论坛详情及议程

论坛详情

日期时间

2026年7月15日(星期三)

9:00 - 14:30(8:30开始报到)

活动地点

香港科技大学(广州)演讲厅 C

活动报名

https://qnr.hkust-gz.edu.cn/vm/YDh2uvg.aspx

主办单位

香港科技大学(广州)人工智能学域

联合主办

新加坡国立大学广州创新研究院

论坛议程

02

主题演讲介绍

按发言顺序排序

论坛上午场

Efficient Serving Systems for Emerging LLM Workloads

Jialin LI

Sung Kah Kay Assistant Professor

National University of Singapore

Abstract

上下滑动查看

Large language models (LLMs) are rapidly reshaping modern applications, from conversational assistants and code generation to agents with autonomous reasoning capabilities. However, achieving high-throughput, low-cost LLM serving under strict latency SLOs still faces two fundamental challenges: efficient scheduling of GPU-side compute resources, and the latency and cost of cross-region remote data access. This talk will introduce our recent systematic solutions targeting these two layers.

The first part of the talk introduces Libra, a high-performance serving system for imbalanced and dynamic LLM workloads. In real-world scenarios, the variation in prompt and response lengths creates imbalance between the compute-intensive prefill stage and the memory-access-intensive decode stage, causing both traditional PD colocation and PD disaggregation architectures to fall short in simultaneously achieving low tail latency and high throughput. Libra proposes a new Flexible Partitioning and Scheduling (FPS) paradigm, using micro-requests as the core abstraction. It performs fine-grained request partitioning at arbitrary token boundaries and dynamically balances load across a unified GPU pool through a two-level scheduler. Combined with a chunked KV-cache transfer mechanism, Libra improves goodput by up to 1.91× over prior systems on A100/H100 clusters, increases serving capacity by 1.15×–3.07×, and achieves up to 74.2% performance improvement under mixed workloads.

The second part of the talk introduces Cortex, a semantic-aware caching system for cross-region remote data access by LLM agents. LLM agents frequently invoke remote search, RAG, and tool APIs in tasks such as deep research and coding, where cross-region access incurs latencies as high as 300–500 ms and costs on the order of millions of dollars per month. Existing caching approaches rely either on exact matching or similarity comparisons in embedding space, and therefore cannot guarantee semantic correctness. Cortex proposes two core abstractions: Semantic Element (SE) and Semantic Retrieval Index (Seri). By combining ANN-based nearest-neighbor retrieval with a lightweight LLM Semantic Judge for precise semantic verification, Cortex builds a cache pipeline that achieves both high hit rates and correctness guarantees. Together with adaptive eviction, proactive prefetching, and GPU co-location of the main LLM and judge LLM, Cortex achieves a 3.6× throughput improvement and over 85% cache hit rate on search workloads, while maintaining accuracy nearly identical to the no-cache baseline. It also delivers a 20% performance improvement on coding tasks.

Bio

Jialin Li is currently the Sung Kah Kay Assistant Professor at the National University of Singapore. He received his Ph.D. from the University of Washington in 2019. His research has received Best Paper Awards at OSDI ’14, NSDI ’15, and NSDI ’26. His recent research interests focus on the co-design of distributed systems and emerging hardware, data-plane operating systems, and distributed AI/ML systems.

Low-Resource Large Model Inference and Fine-Tuning

Zeyi WEN

Assistant Professor

DSA Thrust, HKUST(GZ) 

Abstract

上下滑动查看

This presentation shares two complementary systems to unlock the potential of consumer-grade hardware for LLM serving and tuning. First, SlideFormer enables full-parameter fine-tuning for models up to 123B parameters on a single RTX 4090, with a layer-sliding pipeline and asynchronous offloading to achieve 1.4–6.27× higher throughput. In a multi-GPU data-parallel system, SlideFormer supports finer-grained overlap and elastic checkpointing, achieving over 95% scaling efficiency under near-linear multi-GPU scaling. Second, SMOE enables efficient inference for large-scale MoE models that cannot fit entirely on a single GPU. SMOE combines token-wise expert prefetching with dynamic CPU-GPU co-execution and phase-aware optimization for prefill and decode, yielding 7–8× prefill speedups and up to 20% decoding improvements. SMOE future exploits token-wise prefetching and expert correlation-aware dynamic expert allocation to continuously rebalance expert placement across GPUs, significantly improving resource utilization and achieving notable inference acceleration for large-scale MoE models. Our work collectively demonstrates that with co-designed system optimizations, a single GPU/machine can serve as a powerful, lossless platform for both large-scale LLM training and inference.

Bio

Zeyi Wen received his PhD from the University of Melbourne, Australia, and is currently an Assistant Professor at the Hong Kong University of Science and Technology (Guangzhou). Prior to joining HKUST (Guangzhou), he served as a Lecturer at the University of Western Australia and as a postdoctoral researcher at the National University of Singapore and the University of Melbourne. Dr. Wen's research focuses on large model inference and training acceleration, machine learning systems, automated machine learning, and high-performance computing. He is the recipient of the 2019 Best Paper Award from IEEE Transactions on Parallel and Distributed Systems (TPDS), and currently serves as an Associate Editor (AE) for the Machine Learning Open Source Software (MLOSS) track of the Journal of Machine Learning Research (JMLR).

Automatic Optimization for Efficient LLM Systems

Bingsheng HE

Professor

Vice-Dean (Research) at School of Computing

National University of Singapore

Abstract

Modern LLM systems are bottlenecked not by a single layer, but by mismatches across compute, memory, and hardware. This talk explores how automatic optimization—across arithmetic units, data representation, and system execution—can close these gaps. We present a unified MAC design for mixed precision, near-optimal lossless compression for model weights, and Mars Compute, an agentic cross-platform kernel optimization engine spanning GPUs and TPUs, achieving substantial improvements in efficiency, utilization, and scalability.

Bio

上下滑动查看

Dr. Bingsheng He is currently a Professor and Vice-Dean (Research) at School of Computing, National University of Singapore. Before that, he was a faculty member in Nanyang Technological University, Singapore (2010-2016), and held a research position in the System Research group of Microsoft Research Asia (2008-2010), where his major research was building high performance cloud computing systems for Microsoft. He got the Bachelor degree in Shanghai Jiao Tong University (1999-2003), and the Ph.D. degree in Hong Kong University of Science & Technology (2003-2008). His current research interests include cloud computing, database systems and high performance computing. He has been a winner for industry faculty awards from Microsoft, NVIDIA, Xilinx, Alibaba, Webank, SenseTime and AMD. His work also won multiple recognitions as “Best papers” collection or awards in top forums such as SIGMOD 2008, VLDB 2013 (demo), IEEE/ACM ICCAD 2017, PACT 2018, IEEE TPDS 2019, FPGA 2021, and VLDB 2023 (industry)/2024. Since 2010, he has (co-)chaired a number of international conferences and workshops, including IEEE CloudCom 2014/2015, BigData Congress 2018, ICDCS 2020 and ICDE 2024. He has served in editor board of international journals, including IEEE Transactions on Cloud Computing (IEEE TCC), IEEE Transactions on Parallel and Distributed Systems (IEEE TPDS), IEEE Transactions on Knowledge and Data Engineering (TKDE), Springer Journal of Distributed and Parallel Databases (DAPD) and ACM Computing Surveys (CSUR). He is an ACM Distinguished member and an IEEE Fellow.

Learning Robot–Object Interaction for Cross-Embodiment Dexterous Grasping

Lin SHAO

Assistant Professor

National University of Singapore

Bio

My research interests lie at the intersection of robotics and artificial intelligence. My long-term goal is to holistically build general-purpose robotic systems that intelligently perform a diverse range of tasks in a large variety of environments in the physical world. Specifically, my group is interested in developing algorithms and systems to provide robots with the abilities of perception and manipulation. I serve as a co-chair of Technical Committee on Robot Learning in the IEEE Robotics and Automation Society, and as an Associate Editor for IEEE Robotics and Automation Letters.

I received my Ph.D. from Stanford University, advised by Professor Jeannette Bohg and co-advised by Professor Leonidas J. Guibas. Prior to joining Stanford, I was an undergraduate at Nanjing University.

同城 / 同类活动