-
Notifications
You must be signed in to change notification settings - Fork 180
add TransformBatch for back-to-back Transforms #1532
base: master-deprecated
Are you sure you want to change the base?
add TransformBatch for back-to-back Transforms #1532
Conversation
acae019
to
62e9803
Compare
I can see a need for a I don't think that the default definitions of dependencies for I do think there are a couple of rough edges that need to be discussed:
|
Although I'm already dizzy now.(stay up for tester2), I can remember the reason why I didn't directly use |
Yes, I have removed the usage of
Do you think
In my current implementation,
After I read detail of |
I think this notion of a transform as solving a Fortunately, I think what you're trying to do can be more tersely expressed with something like: import firrtl.stage.transforms.Compiler
class SubCompiler(
targets: Seq[TransformDependency],
knownObjects: Set[Transform] = Set.empty)
extends Compiler(
targets=targets,
currentState=targets.flatMap(_.getObject.prerequisites),
knownObjects=knownObjects) This is basically saying, "Figure out how to run these transforms. Their prerequisites are already satisfied." Mandatory dependents, while not something I'm in favor of, can be expressed by recursively expanding the dependents of your targets: class DependentsCompiler(
targets: Seq[TransformDependency],
knownObjects: Set[Transform] = Set.empty)
extends Compiler(
targets = targets ++ expandDependents(targets),
currentState = targets.flatMap(_.getObject.prerequisites),
knownObjects = knownObjects) Granted, if you have |
Contributor Checklist
Type of Improvement
API Impact
SeqTransfrom
TransformBatch
Backend Code Generation Impact
No impact
Desired Merge Strategy
Release Notes
It support add multi transforms wrapped in a single Transform like
SeqTransform
does, but:- Automatically generate prerequisites(The sum of all transforms)
- Automatically adding necessary dependents and prerequisite to allTransforms.
With this implementation, back-to-back transform can be easily implemented like this:
Reviewer Checklist (only modified by reviewer)
Please Merge
?