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
Currently, the ScheduledC interface is very messy, with many 'optional' objects required by the signature, and with all options being represented as individual boolean arguments.
I propose we
consolidate all of the options into a 'CodegenOptions' object,
only require the essential objects (i.e. the system body and scheduler) when instantiating ScheduledC. The other objects (memory mapper, tiler, etc.) should be initialized in a default manner (i.e., the memory mapper will be initialized to an identity map). These objects can then be manually specified with methods prior to codegen, if one desires a custom memory map or tiler or whatnot.
The text was updated successfully, but these errors were encountered:
Currently, the ScheduledC interface is very messy, with many 'optional' objects required by the signature, and with all options being represented as individual boolean arguments.
I propose we
The text was updated successfully, but these errors were encountered: