You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of having 'onlyWire' be a setting in systolic, change it so that the user has to explicitly call a :pipelineModule() function before codegen if they want the pipelining behavior.
if they don't call :pipelineModule(), it would behave like onlyWire. If they do something that can't be supported by the pipelining code, they would get an error when they call :pipelineModule().
This would better modularize the code. Currently, there are a lot of hidden dependencies on the onlyWire setting in codegen, error checking, etc. This is a mess.
The text was updated successfully, but these errors were encountered:
Instead of having 'onlyWire' be a setting in systolic, change it so that the user has to explicitly call a :pipelineModule() function before codegen if they want the pipelining behavior.
if they don't call :pipelineModule(), it would behave like onlyWire. If they do something that can't be supported by the pipelining code, they would get an error when they call :pipelineModule().
This would better modularize the code. Currently, there are a lot of hidden dependencies on the onlyWire setting in codegen, error checking, etc. This is a mess.
The text was updated successfully, but these errors were encountered: