Skip to content

Commit

Permalink
Merge pull request #87 from SpiNNakerManchester/download_region
Browse files Browse the repository at this point in the history
split download and recording data tables and methods
  • Loading branch information
Christian-B authored Sep 18, 2024
2 parents 8c55c1b + 0e9fbf1 commit 022a6a8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions spinn_pdp2/threshold_vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,8 @@ def read(self, placement, buffer_manager, channel):
:param channel: recording channel to be read
:return: recorded data as packed bytes
"""
raw_data, missing_data = buffer_manager.get_data_by_placement(
placement, channel
)
raw_data, missing_data = buffer_manager.get_recording(
placement, channel)
if missing_data:
raise ValueError("missing data!")

Expand Down

0 comments on commit 022a6a8

Please sign in to comment.