Skip to content

Commit

Permalink
move max_sdram_found to Machine nuke SDRAM object
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 5, 2023
1 parent 25461af commit f9c4a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pacman/operations/placer_algorithms/application_placer.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ def __init__(self, chip, used_processors, used_sdram):
self.cores = set(p.processor_id for p in chip.processors
if not p.is_monitor)
self.cores -= used_processors
self.sdram = chip.sdram.size - used_sdram
self.sdram = chip.sdram - used_sdram

@property
def x(self):
Expand Down

0 comments on commit f9c4a23

Please sign in to comment.