← Home

AI Briefing — March 13, 2026

🔬 Research

Flash-KMeans: Fast and Memory-Efficient Exact K-Means

54 upvotes · Yang et al. · Paper

Researchers tackle k-means clustering's GPU performance bottlenecks by introducing flash-kmeans, an IO-aware implementation that avoids materializing massive distance matrices in memory. Their FlashAssign kernel fuses distance computation with online argmin operations, while a sort-inverse update method transforms atomic scatter operations into efficient localized reductions. The system achieves up to 17.9× speedup over baselines and outperforms cuML by 33× and FAISS by over 200×, making k-means viable as an online primitive for modern AI systems.

Spatial-TTT: Streaming Visual-based Spatial Intelligence with Test-Time Training

43 upvotes · Liu et al. · Paper

This work addresses the challenge of maintaining spatial understanding across long video streams by introducing test-time training (TTT) that adapts model parameters on-the-fly. The hybrid architecture uses large-chunk updates with sliding-window attention and includes a spatial-predictive mechanism with 3D spatiotemporal convolution to capture geometric correspondence. The approach achieves state-of-the-art performance on video spatial benchmarks by organizing and retaining spatial evidence over extended sequences, moving beyond simple context window extensions.

IndexCache: Accelerating Sparse Attention via Cross-Layer Index Reuse

25 upvotes · Bai et al. · Paper

The paper optimizes DeepSeek Sparse Attention by exploiting the observation that top-k token selections remain highly similar across consecutive layers. IndexCache partitions layers into "Full" layers that run their own indexers and "Shared" layers that reuse nearby indices, reducing indexer computations by 75%. On a 30B DSA model, this achieves 1.82× prefill speedup and 1.48× decode speedup with negligible quality loss, addressing the O(L²) complexity bottleneck that remains even in sparse attention systems.


🛠 Tools

msitarzewski/agency-agents — AI specialist collection with distinct personalities

4,168 stars/day · Repo

Born from a Reddit thread, this repository provides 36K+ starred collection of specialized AI agent personalities for different domains - from frontend development to Reddit community management. Each agent comes with defined personality traits, workflows, deliverables, and success metrics rather than generic prompt templates. The agents are designed to work with Claude Code and other AI tools, offering production-ready workflows that have been battle-tested for real outcomes.

microsoft/BitNet — Official inference framework for 1-bit LLMs

2,149 stars/day · Repo

Microsoft's official inference framework for 1.58-bit quantized language models achieves dramatic performance improvements on both ARM and x86 CPUs. The framework delivers 1.37×-5.07× speedups on ARM with 55.4%-70.0% energy reduction, and 2.37×-6.17× speedups on x86 with 71.9%-82.2% energy savings. Most impressively, it can run a 100B BitNet model on a single CPU at human reading speed (5-7 tokens/second), making large language models practical for local deployment.

666ghj/MiroFish — Swarm intelligence prediction engine

1,857 stars/day · Repo

A multi-agent prediction system that constructs "parallel digital worlds" from real-world seed information like news or financial signals. The platform spawns thousands of AI agents with independent personalities, memories, and behavioral logic that interact and evolve socially within the digital environment. Users can inject variables through a "God's eye view" to simulate future scenarios, positioning this as a decision-making tool that lets "the future rehearse in a digital sandbox."


📡 Analysis

Coding After Coders: The End of Computer Programming as We Know It

March 12, 2026 · Post · tags: ai-assisted-programming, careers

Clive Thompson's NY Times Magazine piece captures the current state of AI-assisted development through interviews with 70+ developers from major tech companies. The article highlights how coding has unique advantages for AI assistance since code can be automatically tested for correctness, unlike legal briefs that could cause "total humiliation in court." While some developers lament losing the craft of hand-coding, the general sentiment remains optimistic about increased overall demand.

MALUS - Clean Room as a Service

March 12, 2026 · Post · tags: open-source, ai-ethics

A satirical website offering "AI robots that independently recreate any open source project from scratch" to produce "legally distinct code with corporate-friendly licensing." The service promises liberation from attribution requirements and copyleft obligations through automated clean room implementations. While clearly a joke, the satire cuts deep into ongoing concerns about AI models potentially being used to circumvent open source license obligations.


Sources: HuggingFace Papers API, GitHub Trending, simonwillison.net