top | item 43823548

(no title)

hwpythonner | 10 months ago

Thanks — appreciate it!

You're right that dynamic typing makes high-frequency execution tricky, and modern OoO cores are incredibly good at hiding latencies. But PyXL isn't trying to replace general-purpose CPUs — it's designed for efficient, predictable execution in embedded and real-time systems, where simplicity and determinism matter more than absolute throughput. Most embedded cores (like ARM Cortex-M and simple RISC-V) are in-order too — and deliver huge value by focusing on predictability and power efficiency. That said, there’s room for smart optimizations even in a simple core — like limited lookahead on types, hazard detection, and other techniques to smooth execution paths. I think embedded and real-time represent the purest core of the architecture — and once that's solid, there's a lot of room to iterate upward for higher-end acceleration later.

discuss

order

IshKebab|10 months ago

Very cool! Nobody who really wants simplicity and determinism is going to be using Python on a microcontroller though.

actionfromafar|10 months ago

Hm, why not though. People managed to do it with tiny JVMs before, so why not a Python variant.