EveryDev.ai
Subscribe
Home
Tools

3,419+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. WASTE — Weight-Aware Streaming Tensor Engine
    WASTE — Weight-Aware Streaming Tensor Engine icon

    WASTE — Weight-Aware Streaming Tensor Engine

    Local Inference
    Featured

    An embeddable, dependency-free C inference engine that runs massive frontier models like Kimi K3 (2.78T parameters) on consumer hardware by streaming expert weights from NVMe storage.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under Apache 2.0. Build, run, and embed WASTE at no cost.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Local InferenceAI InfrastructureAutonomous Systems

    Alternatives

    NightRunwebAILocalAI
    Developer
    SQLite Cloud, Inc.San Francisco, CAEst. 2021$25.5M raised

    Listed Aug 2026

    About WASTE — Weight-Aware Streaming Tensor Engine

    WASTE (Weight-Aware Streaming Tensor Engine) is an open-source, embeddable inference engine written in C that enables running enormous mixture-of-experts models on consumer hardware by streaming activated weights directly from fast NVMe storage rather than requiring all parameters to fit in RAM. It is developed by SQLite Cloud, Inc. and released under the Apache 2.0 license. The project's stated goal is to run the full 2.78-trillion-parameter Kimi K3 model on a 64 GB MacBook Pro, achieving approximately 0.6 tokens per second as measured on an M5 Pro machine.

    What It Is

    WASTE is a local inference engine targeting mixture-of-experts (MoE) models, where only a small fraction of parameters are active per token. Rather than loading the entire model into RAM, WASTE keeps the shared model trunk in memory and streams only the selected expert weights from disk on demand. The remaining RAM acts as a bounded expert cache. This architecture allows a 982 GB converted Kimi K3 container — derived from 1.42 TB of published weights — to run on a machine with as little as 29.06 GB of RAM (though 64 GB is the practical recommended minimum).

    How the Streaming Architecture Works

    The engine's design centers on several interlocking techniques:

    • Expert streaming: The container format aligns each expert to a single read operation, so only the experts activated for each token are fetched from disk.
    • Lookahead router: A predictive router starts reading the experts likely needed by the next layer while the current layer computes, overlapping I/O with computation without changing the model's output.
    • Bounded expert cache: Unused RAM is used as a cache for recently accessed experts, reducing repeated disk reads. The README documents that shrinking the cache from 17.32 GB to 3.32 GB costs roughly 10% of throughput.
    • Quantization: Experts use 3-bit residual vector quantization; more sensitive shared weights remain at 4 or 8 bits.
    • Compressed KV cache: Kimi K3's linear attention and compressed latent KV cache reduce the KV footprint to approximately 0.21 GB at 4K context, compared to 11.25 GB for a standard attention model.

    Storage bandwidth is the primary constraint. The README notes that a cold K3 token reads about 17 GB of experts, and the internal SSD on the test machine sustains 12.78 GB/s, while a tested USB enclosure managed only 0.94 GB/s.

    Performance and Hardware Requirements

    Measured on a 64 GB MacBook Pro with an M5 Pro and the model container on internal SSD:

    ModelContainerMinimum RAMDecode speed
    Kimi K3 2.78T982 GB29.06 GB0.45–0.62 tok/s
    Kimi-Linear 48B19 GB1.28 GB10.65 tok/s

    The README explicitly notes that a 32 GB machine can open K3 but will page heavily. For users who want to try the engine without the full K3 requirements, Kimi-Linear (19 GB container, 1.28 GB RAM) is the recommended starting point. All layers are validated against a PyTorch reference; final logits agree within 3.6e-06.

    Capabilities: Vision, Serving, and Embedding

    Beyond text generation, WASTE supports multimodal inference. Kimi K3 is multimodal, and the engine accepts one or more images alongside text prompts via the --image flag or /image command in interactive mode. An optional Python server implements the OpenAI chat-completions API, supporting streaming, tool calls, structured output, thinking controls, and images. WASTE is also an embeddable C library (libwaste.a), with the public API exposed in src/waste.h. The inference path depends only on libc and pthreads — no BLAS, Python, CUDA, or other external dependency is required for CPU inference.

    Update: v0.6.3

    The latest release is v0.6.3, published on 2026-08-03. The repository was created on 2026-07-28 and has been updated rapidly since. The README describes the project as "currently changing very quickly," with a large QA run executed before each release. The format and API are explicitly noted as not yet frozen. Current research directions include CUDA, Metal, and other hardware-specific backends, which the README says "remain to be explored and may provide significant gains." The project is human-directed — ideas, hypotheses, and decisions are human-driven, while code is written by LLMs, a workflow the README describes as necessary for iterating on new algorithms at this scale.

    WASTE — Weight-Aware Streaming Tensor Engine - 1

    Community Discussions

    Be the first to start a conversation about WASTE — Weight-Aware Streaming Tensor Engine

    Share your experience with WASTE — Weight-Aware Streaming Tensor Engine, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under Apache 2.0. Build, run, and embed WASTE at no cost.

    • Full source code under Apache 2.0 license
    • CLI for running, chatting, and planning model memory
    • Embeddable C library (libwaste.a)
    • OpenAI-compatible HTTP server
    • Multimodal inference support

    Capabilities

    Key Features

    • Stream expert weights from NVMe storage to run models beyond available RAM
    • Lookahead router for overlapping disk I/O with computation
    • Bounded expert cache using remaining RAM
    • 3-bit residual vector quantization for experts
    • Multimodal inference with image support
    • OpenAI-compatible chat completions server
    • Embeddable C library (libwaste.a) with public API
    • No external dependencies for CPU inference (libc and pthreads only)
    • Interactive chat mode with session persistence
    • Supports macOS, Linux, and Windows (MinGW-w64)
    • Validation against PyTorch reference for correctness
    • Kimi-Linear 48B support for lower-resource environments

    Integrations

    Kimi K3 (2.78T parameter model)
    Kimi-Linear 48B
    OpenAI chat completions API (server compatibility)
    PyTorch (for model conversion and validation only)
    safetensors (for model conversion only)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate WASTE — Weight-Aware Streaming Tensor Engine and help others make informed decisions.

    Developer

    SQLite Cloud, Inc.

    SQLite Cloud, Inc. builds a suite of products that extend SQLite into a distributed, AI-native data layer spanning edge devices, browsers, robots, AI agents, and cloud infrastructure. Their platform includes SQLite Cloud (a fully managed SQLite backend), CloudSync (CRDT-based offline-first sync), and a family of open-source extensions for AI inference, vector search, agent memory, and MCP tool integration. The company also develops WASTE, an open-source embeddable C inference engine for running frontier models locally on consumer hardware.

    Founded 2021
    San Francisco, CA
    $25.5M raised
    30 employees

    Used by

    Individual developers
    AI Agent startups
    Field service application providers
    Read more about SQLite Cloud, Inc.
    WebsiteGitHubLinkedInX / Twitter
    2 tools in directory

    Similar Tools

    NightRun icon

    NightRun

    A UEFI-resident LLM runtime written in Rust that boots from USB or SD card and runs a local language model entirely in RAM with no operating system underneath.

    webAI icon

    webAI

    Sovereign AI platform that builds, deploys, and operates custom AI on local infrastructure with full ownership, low latency, and predictable costs.

    LocalAI icon

    LocalAI

    Free, open-source OpenAI alternative that runs LLMs, image generation, audio, and autonomous agents locally on consumer hardware.

    Browse all tools

    Related Topics

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    156 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    335 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    364 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions