Check out source files for linear time sorter for FPGAs on #Hackadayio: https://hackaday.io/project/9048-linear-time-sorter-for-fpgas #SortingAlgorithms https://twitter.com/hackaday/status/911251472414904321/photo/1 source: https://twitter.com/hackaday/status/911251472414904321
Linear-Time Sorter for FPGAs
Sorting Algorithms might be an old hat for computer scientists, but running times on the fastest of these algorithms is usually O(Nlog(N)) on a single core. I thought, with an FPGA, why not try a parallel approach in hardware to bring the running time down to O(N)? A few head-scratching evenings later–behold–the Linear-Time-Sorter was born! I’m jazzed to mock this up as an SPI-peripheral for a microcontroller. Feel free to make use of the source files as you need.