Skip to content

Commit

Permalink
Merge branch 'master' of github.com:project-rig/nengo_spinnaker
Browse files Browse the repository at this point in the history
  • Loading branch information
mundya committed Jun 16, 2015
2 parents b995013 + 397cf49 commit 0de3b8e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ For example::
with model:
signal = nengo.Node(lambda t: np.sin(t))

nengo_spinnaker.add_params(model.config)
nengo_spinnaker.add_spinnaker_params(model.config)
model.config[signal].function_of_time = True


Expand Down
6 changes: 0 additions & 6 deletions nengo_spinnaker/netlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ class Net(rig.netlist.Net):
32-bit bitfield instance that can be used to derive the routing key and
mask for the net.
"""
__slots__ = ['keyspace'] # Only add keyspace to the list of slots

def __init__(self, source, sinks, weight, keyspace):
"""Create a new net.
Expand Down Expand Up @@ -85,8 +83,6 @@ class Vertex(object):
cluster : int or None
Index of the cluster the vertex is a part of.
"""
__slots__ = ["application", "constraints", "resources", "cluster"]

def __init__(self, application=None, resources=dict(), constraints=list()):
"""Create a new Vertex.
"""
Expand Down Expand Up @@ -114,8 +110,6 @@ class VertexSlice(Vertex):
Slice of the unit of computation which is represented by this vertex
slice.
"""
__slots__ = ["slice"]

def __init__(self, slice, application=None, resources=dict(),
constraints=list()):
super(VertexSlice, self).__init__(application, resources, constraints)
Expand Down

0 comments on commit 0de3b8e

Please sign in to comment.