← Latest papers
🤖 machine learning

TileQ: Efficient Low-Rank Quantization of Mixture-of-Experts with 2D Tiling

TileQ is a fine-tuning-free post-training quantization method that utilizes 2D-tiling structured low-rank factors shared across input and output dimensions, combined with a fused single-pass inference technique, to significantly reduce memory usage and latency in Mixture-of-Experts models while preserving accuracy.

Original authors: Hongyaoxing Gu, Xinzhe Chen, Lijuan Hu, Fangfang Liu

Published 2026-05-12
📖 4 min read☕ Coffee break read

Original authors: Hongyaoxing Gu, Xinzhe Chen, Lijuan Hu, Fangfang Liu

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you have a massive library of experts (specialists) working for a giant AI company. This company uses a "Mixture-of-Experts" (MoE) system. Here's how it works: when you ask a question, the AI doesn't wake up all the experts. It just picks a few (maybe 2 or 4 out of 100) who are best suited for that specific question. This makes the AI very smart but also very efficient.

The Problem:
Even though the AI only uses a few experts at a time, all of them must be sitting in the computer's memory (RAM) waiting to be called. It's like having a library where every single book must be kept on the desk, even if you only read one page of one book at a time. This takes up a huge amount of space and makes the computer slow because it has to shuffle through a massive pile of books just to find the few it needs.

The Old Solution (and why it failed):
Scientists tried to compress these books by summarizing them (quantization) or breaking them into smaller parts (low-rank).

  • The Issue: If you summarize each expert individually, you still have too many summaries. If you try to share summaries between experts, the old methods were like trying to stack books in a single long line (1D). It saved some space, but the computer still had to jump around a lot to find the right pages, which made it slow. Also, the "summary notes" themselves took up so much extra space that the savings were canceled out.

The New Solution: TILEQ
The authors of this paper propose TILEQ. Think of it as reorganizing the library into a 2D grid of shelves (like a checkerboard) instead of a single long line.

Here is the simple breakdown of how TILEQ works:

1. The "2D Tiling" Trick (The Smart Shelves)

Imagine you have 64 experts. Instead of treating them as 64 separate people, TILEQ looks at them and realizes: "Hey, Expert #1 and Expert #5 think very similarly, and Expert #2 and Expert #6 are also twins."

  • The Old Way: You summarize Expert #1, then Expert #2, then Expert #3... creating 64 separate summaries.
  • The TILEQ Way: You arrange these 64 experts into an 8x8 grid (like a tic-tac-toe board, but bigger).
    • Experts in the same row share a "left-hand note" (a common summary of their input).
    • Experts in the same column share a "right-hand note" (a common summary of their output).
    • The Result: Instead of needing 64 unique summaries, you only need 8 row-notes and 8 column-notes. This drastically cuts down the memory needed to store the "notes."

2. The "One-Pass" Inference (The Express Elevator)

When the AI needs to answer a question, it usually has to run a separate calculation for every single expert it picks. This is like calling an elevator for every single person, one by one. It's slow and inefficient.

  • TILEQ's Fix: Because the experts are now arranged in a neat 2D grid and share notes, the computer can process the "active" experts all at once in a single, smooth motion. It's like turning on a conveyor belt that moves all the selected books to the reader in one go, rather than fetching them one by one.
  • The Benefit: This makes the AI run much faster (lower latency) because the computer hardware (the GPU) can work on a big, solid block of data instead of tiny, scattered pieces.

3. No "Re-Training" Needed

Usually, when you compress an AI, you have to teach it again (fine-tuning) to make sure it doesn't forget how to speak. TILEQ is a "Post-Training Quantization" (PTQ) method.

  • Analogy: It's like taking a finished, high-resolution photo and compressing it into a smaller file size without needing to take the photo again. You just process the existing image. This saves a massive amount of time and computing power.

The Results

The paper claims that by using this 2D grid and the "one-pass" method:

  • Memory: It reduces the extra memory needed for these "notes" by up to 10 times compared to older methods.
  • Speed: It cuts the time it takes to answer a question (latency) down to about 5% of what it used to be for these specific parts of the model.
  • Accuracy: Despite being so small and fast, the AI still answers questions just as well as the big, uncompressed version.

In Summary:
TILEQ is a clever way to organize the "memory notes" of a smart AI. Instead of giving every expert their own heavy backpack, it groups them into teams that share lightweight backpacks. This makes the whole system fit into smaller computers and run much faster, without losing any of its smarts.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →