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
Shared memory is slower than using queues for Numpy arrays with a size
of less than around 1e7.
To optimise performance, shared memory should only be used for large arrays; therefore, a new shared memory threshold
has been added which is used to dictate whether an array should be
transferred using shared memory, depending on its size (dimensions, not
memory usage).
In future, a more elegant approach may be required.
Note: These tests are for regular 64-bit arrays. Improved logic may be
needed for other types of array.
0 commit comments