johan92 / fpga-hash-table

Simple hash table on Verilog (SystemVerilog)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fpga-hash-table

Hash table implementation on Verilog ( SystemVerilog ). Collision resolution made by linked list of keys, that fall in one bucket.

Goal:

  • module should resolve collision by himself
  • max SEARCH throughput: can take SEARCH operation at each cycle (if no collision happend)

Assumptions:

  • DELETE and INSERT operations can take a long time
  • collision resolution for SEARCH can take a long time (due to jumping on linked list)

It got two interfaces (Avalon-ST style):

  • ht_cmd_in - input interface - for sending commands ( SEARCH, INSERT, DELETE )
  • ht_res_out - output interface - result for each command

About

Simple hash table on Verilog (SystemVerilog)

License:MIT License


Languages

Language:SystemVerilog 94.2%Language:Verilog 3.9%Language:Ruby 1.0%Language:Tcl 0.9%