Skip to content

Commit

Permalink
Merge 6f2d79d into ec1af80
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jul 16, 2018
2 parents ec1af80 + 6f2d79d commit e0be46b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions spinn_machine/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,7 @@ def total_available_user_cores(self):
:return: total
:rtype: int
"""
return len([
processor for chip in self.chips for processor in chip.processors
if not processor.is_monitor])
return sum([chip._n_user_processors for chip in self.chips])

@property
def total_cores(self):
Expand Down

0 comments on commit e0be46b

Please sign in to comment.