-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow standalone system simulation component #155
base: master
Are you sure you want to change the base?
Conversation
This involves changing the SystemSimulation input parameters, and making it so that the slave scheduler runs an 'initial' tick in the same way as master.
c178409
to
d6cd04f
Compare
Codecov Report
@@ Coverage Diff @@
## master #155 +/- ##
==========================================
- Coverage 94.69% 94.35% -0.35%
==========================================
Files 44 44
Lines 1264 1276 +12
==========================================
+ Hits 1197 1204 +7
- Misses 67 72 +5
|
- tickit.core.components.system_simulation.SystemSimulation: | ||
name: internal_tickit | ||
inputs: {} | ||
components: | ||
- examples.devices.counter.Counter: | ||
name: counter | ||
inputs: {} | ||
- tickit.devices.sink.Sink: | ||
name: counter_sink | ||
inputs: | ||
input: counter:value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- tickit.core.components.system_simulation.SystemSimulation: | |
name: internal_tickit | |
inputs: {} | |
components: | |
- examples.devices.counter.Counter: | |
name: counter | |
inputs: {} | |
- tickit.devices.sink.Sink: | |
name: counter_sink | |
inputs: | |
input: counter:value | |
- type: tickit.core.components.system_simulation.SystemSimulation | |
name: internal_tickit | |
inputs: {} | |
components: | |
- type: examples.devices.counter.Counter | |
name: counter | |
inputs: {} | |
- type: tickit.devices.sink.Sink | |
name: counter_sink | |
inputs: | |
input: | |
component: counter | |
port: value |
- tickit.core.components.system_simulation.SystemSimulation: | ||
name: internal_tickit | ||
inputs: {} | ||
components: | ||
- tickit.devices.source.Source: | ||
name: internal_source | ||
inputs: {} | ||
value: 42 | ||
- tickit.devices.sink.Sink: | ||
name: internal_sink | ||
inputs: | ||
input: internal_source:value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- tickit.core.components.system_simulation.SystemSimulation: | |
name: internal_tickit | |
inputs: {} | |
components: | |
- tickit.devices.source.Source: | |
name: internal_source | |
inputs: {} | |
value: 42 | |
- tickit.devices.sink.Sink: | |
name: internal_sink | |
inputs: | |
input: internal_source:value | |
- type: tickit.core.components.system_simulation.SystemSimulation | |
name: internal_tickit | |
inputs: {} | |
components: | |
- type: tickit.devices.source.Source | |
name: internal_source | |
inputs: {} | |
value: 42 | |
- type: tickit.devices.sink.Sink | |
name: internal_sink | |
inputs: | |
input: | |
component: internal_source | |
port: value |
- tickit.devices.source.Source: | ||
name: internal_source | ||
inputs: {} | ||
value: 42 | ||
- tickit.devices.sink.Sink: | ||
name: internal_sink | ||
inputs: | ||
input: internal_source:value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- tickit.devices.source.Source: | |
name: internal_source | |
inputs: {} | |
value: 42 | |
- tickit.devices.sink.Sink: | |
name: internal_sink | |
inputs: | |
input: internal_source:value | |
- type: tickit.devices.source.Source | |
name: internal_source | |
inputs: {} | |
value: 42 | |
- type: tickit.devices.sink.Sink | |
name: internal_sink | |
inputs: | |
input: | |
component: internal_source | |
port: value |
This involves changing the SystemSimulation input parameters, and making it so that the slave scheduler runs an 'initial' tick in the same way as master.
Relates to #149