本文整理汇总了Python中nengo_spinnaker.builder.node.NodeIOController类的典型用法代码示例。如果您正苦于以下问题:Python NodeIOController类的具体用法?Python NodeIOController怎么用?Python NodeIOController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NodeIOController类的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_get_node_source_f_of_t
def test_get_node_source_f_of_t(self):
"""Test that calling the NodeIOController for a f_of_t->xx connection
doesn't ask for a SpiNNaker sorce and instead returns the value source
that was associated with the Node.
"""
with nengo.Network() as net:
a = nengo.Node(lambda t: t)
b = nengo.Ensemble(100, 1)
a_b = nengo.Connection(a, b)
# Mark the Node as being a function of time
add_spinnaker_params(net.config)
net.config[a].function_of_time = True
# Create a model and build the Node
model = Model()
model.config = net.config
nioc = NodeIOController()
nioc.build_node(model, a)
# Get the source and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
spec = nioc.get_node_source(model, a_b)
assert spec.target.obj is model.object_operators[a]
assert spec.target.port is OutputPort.standard
# Assert this _didn't_ call `get_spinnaker_source_for_node`
assert not gssfn.called
# There should be nothing in the host network
assert nioc.host_network.all_nodes == list()
assert nioc.host_network.all_connections == list()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:32,代码来源:test_node.py
示例2: test_build_node_function_of_time
def test_build_node_function_of_time(self, period):
"""Test that building a function of time Node creates a new operator.
"""
with nengo.Network() as net:
a = nengo.Node(lambda t: [t, t**2], size_in=0)
# Mark the Node as a function of time
add_spinnaker_params(net.config)
net.config[a].function_of_time = True
if period is not None:
net.config[a].function_of_time_period = period
# Create the model
model = Model()
model.config = net.config
# Build the Node
nioc = NodeIOController()
nioc.build_node(model, a)
# Assert that this added a new operator to the model
assert model.object_operators[a].function is a.output
if period is not None:
assert model.object_operators[a].period == period
else:
assert model.object_operators[a].period is None
assert model.extra_operators == list()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:28,代码来源:test_node.py
示例3: test_build_node_function_of_time_off
def test_build_node_function_of_time_off(self, recwarn):
"""Test that building a function of time Node is exactly the same as
building a regular Node if function of time Nodes are disabled (but
that a warning is raised).
"""
with nengo.Network() as net:
a = nengo.Node(lambda t: t, size_in=0, size_out=1, label="Stim")
# Mark the Node as a function of time
add_spinnaker_params(net.config)
net.config[a].function_of_time = True
# Create the model
model = Model()
model.config = net.config
# Build the Node
nioc = NodeIOController(function_of_time_nodes=False)
nioc.build_node(model, a)
# Assert that no new operators were created
assert model.object_operators == dict()
assert model.extra_operators == list()
# This should have raised a warning
w = recwarn.pop()
assert "disabled" in str(w.message)
assert "Stim" in str(w.message)
开发者ID:pabogdan,项目名称:nengo_spinnaker,代码行数:28,代码来源:test_node.py
示例4: test_get_node_source_node_to_node
def test_get_node_source_node_to_node(self):
"""Test that calling the NodeIOController with a Node->Node connection
doesn't ask for a SpiNNaker source and instead adds the connection to
the host network.
"""
with nengo.Network():
a = nengo.Node(lambda t: t)
b = nengo.Node(lambda t, x: None, size_in=1)
a_b = nengo.Connection(a, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the source
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
assert nioc.get_node_source(model, a_b) is None
# Assert this _didn't_ call `get_spinnaker_source_for_node`
assert not gssfn.called
# Check that `a` and `b` are both in the host network and their
# connection.
assert nioc.host_network.all_nodes == [a, b]
assert nioc.host_network.all_connections == [a_b]
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:26,代码来源:test_node.py
示例5: test_build_node_probe
def test_build_node_probe(self):
"""Test that building a Probe of a Node results in adding a new object
to the model and tries to build a new connection from the Node to the
Probe.
"""
with nengo.Network():
a = nengo.Node(lambda t, x: x**2, size_in=3, size_out=3)
p = nengo.Probe(a)
# Create a model to manipulate
model = mock.Mock(name="model", spec_set=[
"object_operators", "seeds", "make_connection", "dt"
])
model.object_operators = dict()
model.seeds = {p: 123}
model.dt = 0.001
def make_conn_fn(connection):
assert connection.pre_obj is a
assert connection.post_obj is p
assert connection.synapse is p.synapse
model.make_connection = make_conn = mock.Mock(wraps=make_conn_fn)
# Create the builder and build
nioc = NodeIOController()
nioc.build_node_probe(model, p)
# Assert that make_connection was called ONCE
assert make_conn.call_count == 1
# Assert that a ValueSink was inserted in the model
assert isinstance(model.object_operators[p], ValueSink)
assert model.object_operators[p].probe is p
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:34,代码来源:test_node.py
示例6: test_prepare
def test_prepare(self):
"""Preparing the default NodeIOController does nothing."""
model = mock.Mock()
controller = mock.Mock(spec_set=[])
netlist = mock.Mock(spec_set=[])
nioc = NodeIOController()
nioc.prepare(model, controller, netlist)
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:8,代码来源:test_node.py
示例7: test_build_node
def test_build_node(self):
"""Test that building a Node does nothing.
"""
with nengo.Network() as net:
a = nengo.Node(lambda t, x: x**2, size_in=3, size_out=3)
# Create the model
model = Model()
model.config = net.config
# Build the Node
nioc = NodeIOController()
nioc.build_node(model, a)
# Assert that no new operators were created
assert model.object_operators == dict()
assert model.extra_operators == list()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:17,代码来源:test_node.py
示例8: test_get_node_sink_standard
def test_get_node_sink_standard(self):
"""Test that calling a NodeIOController to get the sink for a
connection which terminates at a Node calls the method
`get_spinnaker_sink_for_node` and creates a new InputNode and adds
it to the host network.
"""
with nengo.Network():
a = nengo.Ensemble(100, 2)
b = nengo.Node(lambda t, x: None, size_in=2)
a_b = nengo.Connection(a, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the sink
with mock.patch.object(nioc, "get_spinnaker_sink_for_node") as gssfn:
spec = gssfn.return_value = mock.Mock(name="spec")
assert nioc.get_node_sink(model, a_b) is spec
# Assert this called `get_spinnaker_sink_for_node` correctly
gssfn.assert_called_once_with(model, a_b)
# Check that `a` is in the host_network as is a new InputNode, and a
# connection between them with a synapse of None.
for node in nioc.host_network.all_nodes:
if node is not b:
assert isinstance(node, InputNode)
assert node.target is b
in_node = node
else:
assert node is b
# Check that there is a connection from a to the output node
assert len(nioc.host_network.all_connections) == 1
conn = nioc.host_network.all_connections[0]
assert conn.pre_obj is in_node
assert conn.post_obj is b
assert conn.synapse is None
# Check that the Node is included in the Node input dictionary
assert np.all(nioc.node_input[b] == np.zeros(b.size_in))
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:43,代码来源:test_node.py
示例9: test_passthrough_nodes
def test_passthrough_nodes(self, width):
"""Test the handling of passthrough Nodes."""
with nengo.Network() as net:
a = nengo.Ensemble(100, width)
b = nengo.Node(None, size_in=width, label="Passthrough Node")
c = nengo.Ensemble(100, width)
a_b = nengo.Connection(a, b)
b_c = nengo.Connection(b, c)
# Create a model and build the Node
model = Model()
model.config = net.config
nioc = NodeIOController()
nioc.build_node(model, b)
# Check the passthrough Node resulted in a new operator
assert model.object_operators[b].size_in == b.size_in
assert model.object_operators[b].transmission_delay == 1
assert model.object_operators[b].interpacket_pause == 1
# Get the source and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
spec = nioc.get_node_source(model, b_c)
assert spec.target.obj is model.object_operators[b]
assert spec.target.port is OutputPort.standard
# Assert this _didn't_ call `get_spinnaker_source_for_node`
assert not gssfn.called
# Get the sink and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_sink_for_node") as gssfn:
spec = nioc.get_node_sink(model, a_b)
assert spec.target.obj is model.object_operators[b]
assert spec.target.port is InputPort.standard
# Assert this _didn't_ call `get_spinnaker_sink_for_node`
assert not gssfn.called
# There should be nothing in the host network
assert nioc.host_network.all_nodes == list()
assert nioc.host_network.all_connections == list()
开发者ID:pabogdan,项目名称:nengo_spinnaker,代码行数:42,代码来源:test_node.py
示例10: test_get_node_sink_node_to_node
def test_get_node_sink_node_to_node(self):
"""Test that calling the NodeIOController with a Node->Node connection
doesn't ask for a SpiNNaker sink.
"""
with nengo.Network():
a = nengo.Node(lambda t: t)
b = nengo.Node(lambda t, x: None, size_in=1)
a_b = nengo.Connection(a, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the source
with mock.patch.object(nioc, "get_spinnaker_sink_for_node") as gssfn:
assert nioc.get_node_sink(model, a_b) is None
# Assert this _didn't_ call `get_spinnaker_source_for_node`
assert not gssfn.called
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:20,代码来源:test_node.py
示例11: test_build_node_process_is_not_constant
def test_build_node_process_is_not_constant(self):
"""Test that building a Node with a process is not treated the same as
building a constant valued Node.
"""
with nengo.Network() as net:
a = nengo.Node(nengo.processes.Process())
# Create the model
model = Model()
model.config = net.config
# Build the Node
nioc = NodeIOController()
nioc.build_node(model, a)
# Assert that this added a new operator to the model
assert model.object_operators[a].function is a.output
assert model.object_operators[a].period is None
assert model.extra_operators == list()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:20,代码来源:test_node.py
示例12: test_build_node_constant_value_is_function_of_time
def test_build_node_constant_value_is_function_of_time(self):
"""Test that building a Node with a constant value is equivalent to
building a function of time Node.
"""
with nengo.Network() as net:
a = nengo.Node(np.array([0.5, 0.1]))
# Create the model
model = Model()
model.config = net.config
# Build the Node
nioc = NodeIOController()
nioc.build_node(model, a)
# Assert that this added a new operator to the model
assert model.object_operators[a].function is a.output
assert model.object_operators[a].period is model.dt
assert model.extra_operators == list()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:20,代码来源:test_node.py
示例13: test_get_node_sink_repeated
def test_get_node_sink_repeated(self):
"""Test that calling a NodeIOController to get the sink for a
connection which terminates at a Node calls the method
`get_spinnaker_sink_for_node` and creates a new InputNode and adds
it to the host network.
"""
with nengo.Network():
a = nengo.Ensemble(100, 1)
c = nengo.Ensemble(100, 1)
b = nengo.Node(lambda t, x: None, size_in=1)
a_b = nengo.Connection(a, b)
c_b = nengo.Connection(c, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the sinks
with mock.patch.object(nioc, "get_spinnaker_sink_for_node"):
nioc.get_node_sink(model, a_b)
nioc.get_node_sink(model, c_b)
# Check that `a` is in the host_network as is a new InputNode, and a
# connection between them with a synapse of None.
assert len(nioc.host_network.all_nodes) == 2
for node in nioc.host_network.all_nodes:
if node is not b:
assert isinstance(node, InputNode)
assert node.target is b
in_node = node
else:
assert node is b
# Check that there is ONLY ONE connection from a to the output node
assert len(nioc.host_network.all_connections) == 1
for conn in nioc.host_network.all_connections:
assert conn.pre_obj is in_node
assert conn.post_obj is b
assert conn.synapse is None
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:40,代码来源:test_node.py
示例14: test_passthrough_nodes_with_other_nodes
def test_passthrough_nodes_with_other_nodes(self):
"""Test the handling of passthrough when other Nodes are present."""
with nengo.Network() as net:
a = nengo.Node(lambda t: t, size_in=0, size_out=1)
b = nengo.Node(None, size_in=1, label="Passthrough Node")
c = nengo.Node(lambda t, x: None, size_in=1, size_out=0)
a_b = nengo.Connection(a, b)
b_c = nengo.Connection(b, c)
# Create a model and build the Nodes
model = Model()
model.config = net.config
nioc = NodeIOController()
nioc.build_node(model, a)
nioc.build_node(model, b)
nioc.build_node(model, c)
# Check the passthrough Node resulted in a new operator but that the
# others didn't
assert a not in model.object_operators
assert b in model.object_operators
assert c not in model.object_operators
# Get the source and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
spec = nioc.get_node_source(model, b_c)
assert spec.target.obj is model.object_operators[b]
assert spec.target.port is OutputPort.standard
# Get the sink and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_sink_for_node"):
assert nioc.get_node_sink(model, b_c) is not None
assert c in nioc._input_nodes
# Get the sink and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_sink_for_node") as gssfn:
spec = nioc.get_node_sink(model, a_b)
assert spec.target.obj is model.object_operators[b]
assert spec.target.port is InputPort.standard
# Get the source and ensure that the appropriate object is returned
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
assert nioc.get_node_source(model, a_b) is not None
assert a in nioc._output_nodes
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:45,代码来源:test_node.py
示例15: test_get_node_source_standard
def test_get_node_source_standard(self):
"""Test that calling a NodeIOController to get the source for a
connection which originates at a Node calls the method
`get_spinnaker_source_for_node` and creates a new OutputNode and adds
it to the host network.
"""
with nengo.Network():
a = nengo.Node(lambda t: t)
b = nengo.Ensemble(100, 1)
a_b = nengo.Connection(a, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the source
with mock.patch.object(nioc, "get_spinnaker_source_for_node") as gssfn:
spec = gssfn.return_value = mock.Mock(name="spec")
assert nioc.get_node_source(model, a_b) is spec
# Assert this called `get_spinnaker_source_for_node` correctly
gssfn.assert_called_once_with(model, a_b)
# Check that `a` is in the host_network as is a new OutputNode, and a
# connection between them with a synapse of None.
for node in nioc.host_network.all_nodes:
if node is not a:
assert isinstance(node, OutputNode)
assert node.target is a
out_node = node
else:
assert node is a
# Check that there is a connection from a to the output node
assert len(nioc.host_network.all_connections) == 1
conn = nioc.host_network.all_connections[0]
assert conn.pre_obj is a
assert conn.post_obj is out_node
assert conn.synapse is None
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:40,代码来源:test_node.py
示例16: test_get_source_then_sink_of_node_to_node
def test_get_source_then_sink_of_node_to_node(self):
"""Test that getting the source and then the sink of a Node->Node
connection just adds those items to the host network.
"""
with nengo.Network():
a = nengo.Node(lambda t: [t, t], size_in=0, size_out=2)
b = nengo.Node(lambda t, x: None, size_in=2, size_out=0)
a_b = nengo.Connection(a, b)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the source and then the sink
with mock.patch.object(nioc, "get_spinnaker_sink_for_node"), \
mock.patch.object(nioc, "get_spinnaker_source_for_node"):
nioc.get_node_source(model, a_b)
nioc.get_node_sink(model, a_b)
# The host network should contain a, b and a_b and nothing else
assert nioc.host_network.all_nodes == [a, b]
assert nioc.host_network.all_connections == [a_b]
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:23,代码来源:test_node.py
示例17: test_get_node_source_repeated
def test_get_node_source_repeated(self):
"""Test that the same OutputNode is reused if already present.
"""
with nengo.Network():
a = nengo.Node(lambda t: t)
b = nengo.Ensemble(100, 1)
c = nengo.Ensemble(100, 1)
a_b = nengo.Connection(a, b)
a_c = nengo.Connection(a, c)
model = mock.Mock()
# Create the IO controller
nioc = NodeIOController()
# Get the sources
with mock.patch.object(nioc, "get_spinnaker_source_for_node"):
nioc.get_node_source(model, a_b)
nioc.get_node_source(model, a_c)
# Check that `a` is in the host_network as is a new OutputNode, and a
# connection between them with a synapse of None.
assert len(nioc.host_network.all_nodes) == 2
for node in nioc.host_network.all_nodes:
if node is not a:
assert isinstance(node, OutputNode)
assert node.target is a
out_node = node
else:
assert node is a
# Check that there is ONLY ONE connection from a to the output node
assert len(nioc.host_network.all_connections) == 1
for conn in nioc.host_network.all_connections:
assert conn.pre_obj is a
assert conn.post_obj is out_node
assert conn.synapse is None
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:37,代码来源:test_node.py
示例18: test_close
def test_close(self):
"""Closing the default NodeIOController does nothing."""
nioc = NodeIOController()
nioc.close()
开发者ID:project-rig,项目名称:nengo_spinnaker,代码行数:4,代码来源:test_node.py
注:本文中的nengo_spinnaker.builder.node.NodeIOController类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论