Replies: 1 comment 1 reply
-
Awkward Array does not automatically parallelize, and since most operations do not release the Python GIL (yet), a single process is not going to be able to take advantage of multiple cores. To answer your question, I'd have to know a lot more about what |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two large nested awkward arrays
a
andb
.I want to calculate
a - b
.This operation takes about 30Gb of my RAM. However, the CPU is only at 10% and it seems like only 4 of my 16 logical cores are used.
My question: Is it possible to speed up the calculation and if yes: How?
Beta Was this translation helpful? Give feedback.
All reactions