Skip to content
TopicTracker
From HackerNewsView original
TranslationTranslation

Show HN: Fault-tolerant 4-neighbor hardware mesh with auto-rerouting

A new open-source hardware mesh design called FluxMesh features fault-tolerant 4-neighbor routing with automatic rerouting around failed nodes. The hybrid test core implementation in C handles neighbor discovery, packet routing, and fault recovery in a distributed network topology.

Background

- This is a hardware description (an "H" header file) for a mesh network chip design that can automatically reroute data when a connection fails. Unlike typical network-on-chip (NoC) designs used in CPUs and GPUs, this one only connects each node to its four direct neighbors (north, south, east, west) in a grid, but adds logic that detects broken links and finds alternative paths on the fly without needing a central controller. - The project's unusual name and repository location suggest it comes from an independent developer working outside a major semiconductor lab — it's a hobby/open-source silicon experiment, not an industry product. - Why it matters: As chip manufacturing shrinks transistors, wires become more fragile; a design that can survive broken connections could improve yields and reliability in future chips, especially for large arrays like AI accelerators or memory stacks. - Prior context: Most commercial NoCs use more complex router topologies (e.g., torus, fat tree) with dedicated routing tables. This project's novelty is in keeping the router extremely simple (4 neighbors) while still achieving fault tolerance through a custom algorithm.

Related stories