Relax timeout for stale srcId in NewSourceGenerator

This commit is contained in:
Hansung Kim
2024-03-07 15:58:24 -08:00
parent 56ef9012ee
commit d0ba68852e

View File

@@ -606,7 +606,7 @@ class NewSourceGenerator[T <: Data](
oldestMetadata := occupancyTable(oldestIndex).meta
oldestAge := occupancyTable(oldestIndex).age
assert(
oldestAge <= 2000.U,
oldestAge <= 10000.U,
"One id in the SourceGen is not released for long time, potential bug !"
)