惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
GbyAI
GbyAI
U
Unit 42
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
D
DataBreaches.Net
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
罗磊的独立博客
B
Blog RSS Feed
J
Java Code Geeks
The GitHub Blog
The GitHub Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Our edge AI compiler outperforms Google and vendor toolch...
DeepGate · 2026-06-20 · via Hacker News - Newest: "AI"

Edge AI tooling still lags behind the compilers and runtimes built for large GPU-based models. Most microcontroller deployments rely on Google’s TensorFlow Lite for Microcontrollers (TFLM), or vendor-specific variants – an approach we believe leaves significant performance untapped. At the edge, efficiency determines whether a model fits at all, runs in real time, or meets its power budget. Our goal is to build the leading edge AI compiler for CPUs and AI accelerators, starting with the smallest devices: microcontrollers.

We’re releasing the DeepGate compiler (v0.15.0), which compiles quantized .tflite models into optimized inference binaries that use up to 3× less RAM and run up to 2× faster than Google’s TFLM on Arm Cortex-M devices. In our MLPerf Tiny evaluation, a benchmark suite for tiny machine learning on microcontrollers, it outperformed TFLM across silicon from Analog Devices, Infineon, Silicon Labs, and STM, while also outperforming Infineon’s and Silicon Labs’ own toolchains on their hardware. In some cases, our compiler enabled models to run that otherwise would not fit in memory.

Try it out →

Outperforming vendor toolchains on their own hardware

We’ve validated the DeepGate compiler (v0.15.0) on the MLPerf Tiny v1.4 benchmark suite, the industry-standard benchmark for machine learning on microcontrollers. We ran it across four boards from four silicon vendors, with results submitted to MLPerf for independent review. The suite includes representative edge AI workloads for keyword spotting, visual wake words, image classification, and anomaly detection. Without modifying the models, our compiler uses up to 3× less RAM and runs up to 2× faster than Google’s TFLM. It also outperforms vendor toolchains: delivering up to 3× lower RAM usage and 1.8× faster inference than Silicon Labs’ TFLM Simplicity SDK on the EFR32MG24’s AI accelerator, and up to 2× faster inference than Infineon’s Imagimob on the PSoC 6. Our memory savings determine whether a model fits at all: on Analog Devices’ MAX32655, the Visual Wake Words benchmark ran out of memory under TFLM but compiled and executed successfully with the DeepGate compiler.

Explore every comparison below: switch boards, compare frameworks where available, and toggle between latency and RAM usage. Here, we measured RAM as the tensor arena plus peak stack size.

DeepGate runs up to 1.9× faster

STM32H7A3 Cortex-M7 @ 280 MHz

ST Edge AI from STMicroelectronics remains highly competitive. Against its balanced compilation setting, we deliver faster keyword spotting inference (1.1× faster) and lower RAM usage on anomaly detection (1.6× less RAM), while other workloads remain a focus for upcoming releases.

How we did it

Meaningful efficiency gains require optimization across multiple dimensions, so we optimized our compiler across all of them: it compiles to static binaries rather than a runtime interpreter, plans whole-graph memory allocation at compile time, and applies hardware-aware kernel optimizations beyond Arm’s standard CMSIS-NN kernels, including custom assembly routines tuned through hardware-in-the-loop testing.

Google’s TFLMDeepGate compiler
SetupManual op registration and arena sizingAutomatic
ExecutionRuntime interpreterStatically compiled binary
Memory planningArena manually sized, greedy buffer reuseArena optimally laid out at compile time
KernelsARM CMSIS-NNCustom assembly, hardware-in-the-loop tuned

What makes the DeepGate compiler different

We’re still early in our optimization roadmap, with significant opportunities remaining in areas such as memory planning and kernel optimization. We’re also expanding support for approaches that existing edge AI toolchains often underserve, including sparse networks, lower-bit quantization, and efficient attention mechanisms for Transformer models. Looking further ahead, we are co-designing our compiler around DeepGate’s novel ML building blocks, which reduce reliance on costly matrix multiplications and enable greater use of in-place computation – paving the way for models fundamentally better suited to constrained hardware.

What’s next

Today our compiler targets Arm Cortex-M CPUs and selected embedded AI accelerators, and we’re actively expanding that support. We’d love to hear which targets matter most to you. Sign up for updates, request platform access, or get in touch if there’s a device you’d like us to support next.

Sign up for updates →