Skip to content

Commit

Permalink
can not use default slice
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jun 25, 2020
1 parent 98d82c7 commit 8a0c613
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ def create_machine_vertex(
self, vertex_slice, resources_required, label=None,
constraints=None):
machine_vertex = MachineSpiNNakerLinkVertex(
self._spinnaker_link_id, self._board_address, label, constraints)
self._spinnaker_link_id, self._board_address, label, constraints,
self, vertex_slice)
if resources_required:
assert (resources_required == machine_vertex.resources_required)
if vertex_slice:
assert (vertex_slice == machine_vertex.vertex_slice)
return machine_vertex

0 comments on commit 8a0c613

Please sign in to comment.