Hacker News new | ask | show | jobs
by azinman2 1258 days ago
Are you running a CNN on an ESP32? Is that even possible with so little stack and heap? PRRAM is slow
1 comments

The ESP32-S3 introduces vector instructions which are supported by TFLite already. See here - https://github.com/espressif/esp-nn#performance

S3 also supports Octal PSRAM vs the single lane SPI PSRAM found on the older ESP32-CAM style boards, should be 8x the bandwidth with all else equal. So far I've only seen the octal PSRAM's available on WROOM modules and it looks likes there only support for Espressif branded Octal PSRAM chips at this point.

Wow nice! Thanks!