Papers
Topics
Authors
Recent
Search
2000 character limit reached

Sherry: Quantization, Caching & Quasar Survey

Updated 2 July 2026
  • Sherry is a hardware-efficient ternary quantization framework that reduces bit-width to 1.25 bits per weight using a 3:4 sparsity scheme, enhancing efficiency in large language models.
  • Sherry advances online caching theory by introducing a delayed-hits model and superphase analysis, providing an O(Zk) competitive bound for algorithms like LRU.
  • SHERRY is a submillimetre survey of z∼6 quasars using SCUBA2, linking FIR luminosity and star formation rates with weak ultraviolet emission lines in early AGN–galaxy evolution.

Sherry refers to several distinct, influential concepts and research frameworks within modern computational and astronomical literature. It is used as (1) a hardware-efficient ternary quantization framework for neural networks, (2) a key analytical innovator in online caching theory, and (3) the acronym "SHERRY" for a landmark submillimetre survey of high-redshift quasars. Each domain is outlined below with rigor, contextualization, and linkage to research priorities.

1. Sherry: Hardware-Efficient Ternary Quantization Framework

Sherry is a ternary quantization method designed to reduce memory/computation bottlenecks in LLM deployment on resource-constrained hardware. It achieves a hardware-optimal bit-width of 1.25 bits per network weight using a fine-grained 3:4 sparsity scheme and introduces mechanistic solutions for training pathologies unique to structured ternary constraints (Huang et al., 12 Jan 2026).

Formalization: 3:4 Fine-Grained Sparsity

The principal insight is to enforce, for each block of size 4 in the weight matrix WRdin×doutW \in \mathbb{R}^{d_{\rm in} \times d_{\rm out}}, a ternary approximation Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\} such that exactly 3 of every 4 weights in each block are nonzero. For each column, the quantization objective is:

minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^2

subject to Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\} and Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 3 for all bb (block indices). The optimal block ternarization (Sparse-AbsMean) is constructed by zeroing the weight with the smallest magnitude in each block, setting the remaining three to ±1\pm1, and averaging their absolute value for the scaling factor αj\alpha_j.

Each block’s 32 ternary patterns ((43)×23=32\binom{4}{3} \times 2^3 = 32) fit precisely in 5 bits—thus, when storing 4 weights into a 5-bit word, the effective bit-width is $1.25$ with perfect alignment to 128-bit SIMD instructions.

Weight Trapping Phenomenon

Direct QAT under this ternary sparsification results in "gradient homogenization." The backward-pass gradient through the straight-through estimator (STE) exhibits strongly reduced rank due to the uniform sparsity mask, leading to "representational collapse": model parameters are driven toward binary values, and the ternary codebook flexibility is unexploited, with a measurable loss in expressivity.

Arenas: Annealing Residual Synapse Mechanism

To counteract weight trapping, Sherry augments each quantized linear layer during training with a bypass branch carrying full-precision weights, scaled by an annealing coefficient Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}0 over the training schedule. The forward pass is:

Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}1

The resulting backward gradients propagate both ternary and full-precision signal until late-stage annealing, maintaining high Effective Rank and preventing collapse. At inference, only the ternary branch remains, ensuring zero-cost for the Arenas solution.

Empirical and Hardware Efficiency Results

On LLaMA-3.2 (1B, 3B parameters), Sherry matches or exceeds the leading 1.67-bit schemes (e.g., TL2) in accuracy across ARC-Easy, ARC-Challenge, HellaSwag, PIQA, and WinoGrande, while affording a Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}2–Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}3 bit-width reduction over 2-bit and 1.67-bit baselines. Inference throughput improves by Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}4–Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}5 on consumer Intel CPUs; model memory usage shrinks proportionately. Sherry's packing/unpacking uses routine AVX2 vector instructions and local LUTs, requiring no exotic hardware (Huang et al., 12 Jan 2026).

2. Sherry in Online Caching Theory: Delayed-Hits Model

In the context of online algorithms, "Sherry" denotes a principal contributor to the theoretical analysis of the delayed-hits caching model, a generalization of classical paging where the latency to accommodate a miss is parameterized by a delay Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}6 (Gurushankar et al., 27 Jan 2025).

Delayed-Hits Model Definition

Given universe size Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}7, cache size Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}8, and delay window Ti,j{1,0,1}T_{i,j} \in \{-1,0,1\}9, requests minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^20 are served over minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^21 timesteps. Fetches take minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^22 steps to complete; a request during an in-flight fetch may incur reduced penalty ("delayed-hit"). The instantaneous cost minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^23 is:

  • minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^24 (cache hit)
  • minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^25 (hit during delay window)
  • minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^26 (miss, no in-flight fetch)

The goal is to minimize total latency minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^27.

minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^28 Competitiveness of LRU

Sherry, with collaborators, developed the "superphase" analysis, refining classical phase partitioning to group phases into superphases of length at least minT:,j,αjW:,jT:,jαj22\min_{T_{:,j},\,\alpha_j} \|W_{:,j} - T_{:,j}\alpha_j\|_2^29. Their key result is that Least Recently Used (LRU) and more generally any "marking algorithm" incurs at most Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}0 times the optimal offline cost:

Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}1

The proof leverages:

  • Phase and superphase decomposition
  • Marking invariants (a requested page remains persistent in cache throughout the phase)
  • Tight bounding of LRU cost within superphases
  • Matching lower-bound constructions

For Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}2, the result recovers Sleator–Tarjan's Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}3 bound for classical paging.

Novel Techniques

Sherry's introduction of superphase decomposition generalizes competitive analysis to a pipelined delay model, enabling tight asymptotics in Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}4 and Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}5. The analysis applies directly to marking-style algorithms and paves the way for further exploration of delayed-service models.

Prospective Directions

Subsequent research directions include incorporating prediction, handling weighted or variable-sized pages, exploiting parallel fetches (Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}6), and robustness to fluctuating or uncertain Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}7. The framework is positioned as broadly applicable to resource-lockin phenomena in online scheduling (Gurushankar et al., 27 Jan 2025).

3. SHERRY: SCUBA2 High Redshift Bright Quasar Survey

SHERRY (SCUBA2 High rEdshift bRight quasaR surveY) is a submillimeter continuum survey targeting the far-infrared properties and spectral signatures of Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}8 quasars using the SCUBA2 instrument on JCMT (Li et al., 2020).

Survey Design and Objectives

  • Sample: 54 optically/NIR-detected quasars with Ti,j{1,0,+1}T_{i,j} \in \{-1, 0, +1\}9, Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 30, avoiding duplication with previous mm/submm surveys.
  • Instrument: SCUBA2 at 450 Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 31m and 850 Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 32m, with Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 331.2 mJy beamTb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 34 rms at 850 Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 35m.
  • Detection Criterion: Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 36 at source position.
  • Goals:
    • Quantify FIR luminosity (Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 37) and dust-continuum emission.
    • Derive star formation rates (SFRs) and dust masses in host galaxies.
    • Systematically analyze weak-line quasar (WLQ) incidence (Tb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 38(LyTb:b+3,j0=3\|T_{b:b+3,j}\|_0 = 39+Nv)bb0Å).

Key Observational Results

  • Detection Rate: 16/54 (30%) have secure bb1m detections; median flux bb2 mJy for detections.
  • FIR/SFR: bb3–bb4; SFRbb5–bb6 yrbb7 inferred from greybody dust models (bb8 K, bb9).
  • Comparison: At ±1\pm10, ultra-luminous FIR hosts (±1\pm11) are rarer than in ±1\pm12–±1\pm13 samples.

Ultraviolet Spectral Diagnostics

  • Weak-Line Incidence: 11% (6/54) classified as WLQs (±1\pm1415.4 Å).
  • Detections have systematically lower ±1\pm15: mean ±1\pm16 (±1\pm1722 Å) versus ±1\pm18 (±1\pm1960 Å) for non-detections; K–S test αj\alpha_j0.
  • This suggests a statistically significant link between strong dust emission and weak UV emission lines.

Interpretive Framework

The SHERRY results are consistent with two scenarios for coevolving AGN and host: (a) extremely high Eddington ratio accretion creating a thick "shielding gas" structure, with UV lines suppressed and ISM fueling intense starbursts; or (b) evolutionary phases with underdeveloped broad line regions and high SFRs during rapid black hole and stellar mass assembly.

A plausible implication is that SHERRY is probing an early, formative AGN–galaxy phase at cosmic dawn—high SFRs, strong dust continuum, and weak-line regions that reflect the interplay between accretion geometry and ISM conditions (Li et al., 2020).

4. Summary Table: Key Dimensions of "Sherry"

Context Domain & Purpose Foundational Reference
Quantization Framework Hardware-efficient, 1.25-bit ternary LLM quantization (Huang et al., 12 Jan 2026)
Caching Theory Analysis of delayed-hits model, αj\alpha_j1 competitive LRU bounds (Gurushankar et al., 27 Jan 2025)
Astronomy Survey SHERRY: Submm continuum/properties of αj\alpha_j2 quasars (Li et al., 2020)

5. Research Impact and Future Directions

In quantized neural inference, Sherry establishes the practical bit-width lower bound for ternary models compatible with modern SIMD hardware, addresses training instabilities, and demonstrates scalable performance on LLMs up to 3B parameters. Extending to even larger models, integrating activation quantization, and leveraging sparse tensor cores remain open challenges (Huang et al., 12 Jan 2026).

In online caching, Sherry's analytical techniques for the delayed-hits setting provide the field's first matching αj\alpha_j3 guarantees. Future work will likely explore augmentations with predictions, cost-scaling in more complex resource landscapes, and generalization to multi-channel or dynamic-delay architectures (Gurushankar et al., 27 Jan 2025).

As a survey, SHERRY robustly characterizes both the incidence of starbursting hosts and their correspondence to weak emission lines, informing AGN–galaxy coevolutionary models in the early universe. Additional spectral follow-up and extension to fainter luminosities or higher redshifts are prospective avenues (Li et al., 2020).

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Sherry.