Commit 00c6f582 authored by Florent Kermarrec's avatar Florent Kermarrec
Browse files

genlib/cdc/gearbox: remove TODO since code is already a good compromise

latency can't be reduced that much and reducing ressource usage (already low) would introduce unneeded complexity.
parent c3708b3a
...@@ -224,7 +224,6 @@ class Gearbox(Module): ...@@ -224,7 +224,6 @@ class Gearbox(Module):
] ]
self.clock_domains += cd_write, cd_read self.clock_domains += cd_write, cd_read
# TODO: optimize storage/resets for lowest ressource usage / lowest latency
storage = Signal(2*lcm(iwidth, owidth)) storage = Signal(2*lcm(iwidth, owidth))
wrchunks = len(storage)//iwidth wrchunks = len(storage)//iwidth
rdchunks = len(storage)//owidth rdchunks = len(storage)//owidth
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment