Dataflow Software Stack
032db78
Master Thesis of Mathijs Saey at the VUB
|
An instruction that inherits from this class promises to send it's output to a destination that can be added through the addDestination method. More...
Public Member Functions | |
def | addDestination |
Add a destination to this instruction. More... | |
def | sendDatum |
Send a datum to any destination of a given output port. More... | |
An instruction that inherits from this class promises to send it's output to a destination that can be added through the addDestination method.
def core.instruction.Destination.addDestination | ( | self, | |
outPort, | |||
inst, | |||
toPort | |||
) |
Add a destination to this instruction.
port | The output port to link from |
toInst | The instruction to send to |
toPort | The port on this instruction to send to. |
def core.instruction.Destination.sendDatum | ( | self, | |
datum, | |||
core, | |||
port, | |||
cont | |||
) |
Send a datum to any destination of a given output port.
datum | The piece of data to send. |
core | The currently active core. |
port | The port that we send outputs from. |
cont | The context of the output. |