TensorFlow Lite Micro Integration
Overview
Use this skill to bring up TensorFlow Lite for Microcontrollers (TFLM / LiteRT for Microcontrollers) on an MCU: register exactly the ops the model uses, size the tensor_arena correctly, and quantize inputs so Invoke() returns valid output. Most failures are missing ops, an undersized arena, or unquantized input, not model logic. TFLM is Google's official microcontroller runtime and is integrated by several vendor toolchains — Espressif esp-tflite-micro (with ESP-NN kernels), NXP eIQ, and ST X-CUBE-AI, where TFLM is available as an optional runtime alongside ST's own proprietary Cube.AI runtime. Use tinymaix-integration instead when you want a lighter, dependency-free runtime.
When To Use
Use this skill when:
- The user runs
tensorflow/tflite-micro and works with tflite::MicroInterpreter, tflite::MicroMutableOpResolver, AllocateTensors(), or Invoke().
- The build or runtime hits
Didn't find op for builtin opcode 'CONV_2D', 'QUANTIZE', arena/AllocateTensors failures, or output that is all zeros or drifting.
- The project embeds a
.tflite model as a C array (xxd -i) and needs int8 scale/zero_point handling.
Do not use this skill when the model is not yet converted and quantized to .tflite; run the TFLite converter and validate on the host first.
First Questions
Ask for:
- Target core, RAM/flash, and toolchain; whether CMSIS-NN / ESP-NN / vendor kernels are used.
- The
.tflite model, its op list (from Netron or flatc), and its input/output dtype (int8, uint8, or float32).
- Current
kTensorArenaSize and whether AllocateTensors() returns kTfLiteOk.
- Input
scale/zero_point and expected output; a known golden input/output pair.
- Exact symptom: link error, missing-op error, allocation failure, or wrong output.
Integration Checklist
Convert and embed the model.
Produce a quantized .tflite, then xxd -i model.tflite > model.cc. Reference it via tflite::GetModel(g_model) and check model->version() != TFLITE_SCHEMA_VERSION.
Register only the needed ops.
Use tflite::MicroMutableOpResolver<N> where N matches the exact count of AddConv2D(), AddDepthwiseConv2D(), AddFullyConnected(), AddReshape(), AddSoftmax(), AddQuantize(), etc. AllOpsResolver (which registers all built-in ops) bloats flash; avoid it in production.
Allocate the tensor arena.
Declare alignas(16) uint8_t tensor_arena[kTensorArenaSize];, construct tflite::MicroInterpreter with the model, resolver, tensor_arena, and kTensorArenaSize, then use MicroPrintf for logging.
Allocate tensors and check the code.
Call interpreter.AllocateTensors() and confirm it returns kTfLiteOk. Grow kTensorArenaSize if it fails, then trim toward interpreter.arena_used_bytes().
Quantize the input.
Read input->params.scale and input->params.zero_point, compute q = round(real / scale) + zero_point, clamp to [-128, 127], and write input->data.int8[i].
Invoke and dequantize.
Check interpreter.Invoke() == kTfLiteOk, then convert output->data.int8[i] back with real = (q - zero_point) * scale.
Common Failures
Didn't find op for builtin opcode 'CONV_2D' / 'QUANTIZE': op missing from the resolver, or N in MicroMutableOpResolver<N> too small to hold all Add* calls.
- Opcode version mismatch (same message with
version 'N' plus "An older version of this builtin might be supported"): model exported by a newer converter than the runtime; rebuild tflite-micro or re-export.
AllocateTensors() fails or returns non-kTfLiteOk because kTensorArenaSize is too small.
- Output is all zeros or drifts: input written as raw floats/pixels without applying
scale/zero_point.
- Hard fault or stack overflow inside
AllocateTensors()/Invoke(): give the calling thread enough stack (typically several KB).
- Unaligned or too-small
tensor_arena (missing alignas(16)) causing allocation errors.
Verification
Before claiming TFLM inference works:
- State the model, its op list, input/output dtype, and
kTensorArenaSize vs arena_used_bytes().
- Confirm
AllocateTensors() and Invoke() both return kTfLiteOk.
- Confirm a golden input reproduces the host reference output within quantization tolerance.
- Confirm input quantization and output dequantization use the tensor's actual
scale/zero_point.
Example
User:
TFLM 里 Invoke 报 "Didn't find op for builtin opcode 'DEPTHWISE_CONV_2D'"。
Agent:
- Asks for the model op list (Netron/
flatc) and the current MicroMutableOpResolver<N> registrations.
- Adds
resolver.AddDepthwiseConv2D() and bumps N to match the total Add* count.
- Re-runs, confirms
AllocateTensors() and Invoke() return kTfLiteOk, and checks a golden vector.
1---2name: tflite-micro-integration3description: Use when integrating or debugging TensorFlow Lite Micro (LiteRT) on MCUs — op resolver, tensor arena sizing, AllocateTensors, Invoke, int8 quantization, and missing-op errors4---56# TensorFlow Lite Micro Integration78## Overview910Use this skill to bring up TensorFlow Lite for Microcontrollers (TFLM / LiteRT for Microcontrollers) on an MCU: register exactly the ops the model uses, size the `tensor_arena` correctly, and quantize inputs so `Invoke()` returns valid output. Most failures are missing ops, an undersized arena, or unquantized input, not model logic. TFLM is Google's official microcontroller runtime and is integrated by several vendor toolchains — Espressif `esp-tflite-micro` (with ESP-NN kernels), NXP eIQ, and ST X-CUBE-AI, where TFLM is available as an optional runtime alongside ST's own proprietary Cube.AI runtime. Use `tinymaix-integration` instead when you want a lighter, dependency-free runtime.1112## When To Use1314Use this skill when:1516- The user runs `tensorflow/tflite-micro` and works with `tflite::MicroInterpreter`, `tflite::MicroMutableOpResolver`, `AllocateTensors()`, or `Invoke()`.17- The build or runtime hits `Didn't find op for builtin opcode 'CONV_2D'`, `'QUANTIZE'`, arena/`AllocateTensors` failures, or output that is all zeros or drifting.18- The project embeds a `.tflite` model as a C array (`xxd -i`) and needs int8 `scale`/`zero_point` handling.1920Do not use this skill when the model is not yet converted and quantized to `.tflite`; run the TFLite converter and validate on the host first.2122## First Questions2324Ask for:2526- Target core, RAM/flash, and toolchain; whether CMSIS-NN / ESP-NN / vendor kernels are used.27- The `.tflite` model, its op list (from Netron or `flatc`), and its input/output dtype (`int8`, `uint8`, or `float32`).28- Current `kTensorArenaSize` and whether `AllocateTensors()` returns `kTfLiteOk`.29- Input `scale`/`zero_point` and expected output; a known golden input/output pair.30- Exact symptom: link error, missing-op error, allocation failure, or wrong output.3132## Integration Checklist33341. Convert and embed the model.35 Produce a quantized `.tflite`, then `xxd -i model.tflite > model.cc`. Reference it via `tflite::GetModel(g_model)` and check `model->version() != TFLITE_SCHEMA_VERSION`.36371. Register only the needed ops.38 Use `tflite::MicroMutableOpResolver<N>` where `N` matches the exact count of `AddConv2D()`, `AddDepthwiseConv2D()`, `AddFullyConnected()`, `AddReshape()`, `AddSoftmax()`, `AddQuantize()`, etc. `AllOpsResolver` (which registers all built-in ops) bloats flash; avoid it in production.39401. Allocate the tensor arena.41 Declare `alignas(16) uint8_t tensor_arena[kTensorArenaSize];`, construct `tflite::MicroInterpreter` with the model, resolver, `tensor_arena`, and `kTensorArenaSize`, then use `MicroPrintf` for logging.42431. Allocate tensors and check the code.44 Call `interpreter.AllocateTensors()` and confirm it returns `kTfLiteOk`. Grow `kTensorArenaSize` if it fails, then trim toward `interpreter.arena_used_bytes()`.45461. Quantize the input.47 Read `input->params.scale` and `input->params.zero_point`, compute `q = round(real / scale) + zero_point`, clamp to `[-128, 127]`, and write `input->data.int8[i]`.48491. Invoke and dequantize.50 Check `interpreter.Invoke() == kTfLiteOk`, then convert `output->data.int8[i]` back with `real = (q - zero_point) * scale`.5152## Common Failures5354- `Didn't find op for builtin opcode 'CONV_2D'` / `'QUANTIZE'`: op missing from the resolver, or `N` in `MicroMutableOpResolver<N>` too small to hold all `Add*` calls.55- Opcode version mismatch (same message with `version 'N'` plus "An older version of this builtin might be supported"): model exported by a newer converter than the runtime; rebuild `tflite-micro` or re-export.56- `AllocateTensors()` fails or returns non-`kTfLiteOk` because `kTensorArenaSize` is too small.57- Output is all zeros or drifts: input written as raw floats/pixels without applying `scale`/`zero_point`.58- Hard fault or stack overflow inside `AllocateTensors()`/`Invoke()`: give the calling thread enough stack (typically several KB).59- Unaligned or too-small `tensor_arena` (missing `alignas(16)`) causing allocation errors.6061## Verification6263Before claiming TFLM inference works:6465- State the model, its op list, input/output dtype, and `kTensorArenaSize` vs `arena_used_bytes()`.66- Confirm `AllocateTensors()` and `Invoke()` both return `kTfLiteOk`.67- Confirm a golden input reproduces the host reference output within quantization tolerance.68- Confirm input quantization and output dequantization use the tensor's actual `scale`/`zero_point`.6970## Example7172User:7374```text75TFLM 里 Invoke 报 "Didn't find op for builtin opcode 'DEPTHWISE_CONV_2D'"。76```7778Agent:79801. Asks for the model op list (Netron/`flatc`) and the current `MicroMutableOpResolver<N>` registrations.811. Adds `resolver.AddDepthwiseConv2D()` and bumps `N` to match the total `Add*` count.821. Re-runs, confirms `AllocateTensors()` and `Invoke()` return `kTfLiteOk`, and checks a golden vector.