You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
Right now, the files are read in advance to count the number of events. Then, this number is used to allocate a NumPy array on the Python side, that is then filled by the C code. We would like to use dynamic memory allocation to generate the array as we read the file and, then, generate a NumPy array from it.
This was the initial implementation but it was too dumb, leading to poor performance.
The text was updated successfully, but these errors were encountered:
Right now, the files are read in advance to count the number of events. Then, this number is used to allocate a NumPy array on the Python side, that is then filled by the C code. We would like to use dynamic memory allocation to generate the array as we read the file and, then, generate a NumPy array from it.
This was the initial implementation but it was too dumb, leading to poor performance.
The text was updated successfully, but these errors were encountered: