Skip to content

Commit

Permalink
memory optimisation
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkilic committed Feb 12, 2024
1 parent 1439e8c commit c50f7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluepyefe/cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def plot_recordings(self, protocol_name, output_dir=None, show=False):
recordings_sorted = [recordings[k] for k in numpy.argsort(recordings_amp)]

n_cols = 6
max_plots_per_page = 24
max_plots_per_page = 12
total_pages = int(numpy.ceil(len(recordings_sorted) / max_plots_per_page))

if output_dir is not None:
Expand Down

0 comments on commit c50f7b0

Please sign in to comment.