Compatibility Gate
Check model operator usage early against the target runtime profile and kernels. Late discovery of unsupported operations often forces costly architecture redesign near release.
Fallback Strategy
If an operation is unsupported, choose between graph rewrite, custom kernels, or architecture adjustment based on risk and maintainability. Prioritize long-term support over short-term hacks.
Validation Signal
Use on-target regression runs for representative inputs after each conversion change. Host inference parity alone is not sufficient for MCU readiness.
Note: Key Point: Operator audits should happen at architecture selection time, not at final integration.