Skip to content

Commit

Permalink
Use less memory when loading EDF file (mne-tools#10638)
Browse files Browse the repository at this point in the history
* Use less memory when loading EDF file

* Add changelog entry

* Formatting

Co-authored-by: Alexandre Gramfort <alexandre.gramfort@m4x.org>

* Restart CI

Co-authored-by: Alexandre Gramfort <alexandre.gramfort@m4x.org>
  • Loading branch information
cbrnr and agramfort committed May 17, 2022
1 parent 5be1af6 commit 6b26745
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mne/io/edf/edf.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ def _read_segment_file(data, idx, fi, start, stop, raw_extras, filenames,
one = np.zeros((len(orig_sel), d_eidx - d_sidx), dtype=data.dtype)
for ii, ci in enumerate(read_sel):
# This now has size (n_chunks_read, n_samp[ci])
ch_data = many_chunk[:, ch_offsets[ci]:ch_offsets[ci + 1]]
ch_data = many_chunk[:,
ch_offsets[ci]:ch_offsets[ci + 1]].copy()

if ci in tal_idx:
tal_data.append(ch_data)
Expand Down

0 comments on commit 6b26745

Please sign in to comment.