prga.core.builder.base module¶
-
class
prga.core.builder.base.BaseBuilder(context, module)¶ Bases:
prga.util.ObjectBase class for all module builders.
Parameters: -
_context¶
-
_module¶
-
connect(sources, sinks, *, fully=False, **kwargs)¶ Connect
sourcestosinks.Parameters: - sources – Source nets, i.e., an input port, an output pin of an instance, a subset of the above, or a list of a combination of the above
- sinks – Sink nets, i.e., an output port, an input pin of an instance, a subset of the above, or a list of a combination of the above
Keyword Arguments: - fully (
bool) – If set toTrue, connections are made between every source and every sink - **kwargs – Additional attibutes assigned to all connections
-