Comment by dotancohen
1 month ago
Cython is a great idea, thank you. I'll definitely try that. The code is all properly typed anyway.
I'm not sure what you mean by avoiding copies. I'm rather stringent with memory, I don't have superfluous copies of data in memory. Or did you mean something else?
Thank you.
Sometimes Python code makes copies when we’re not expecting it to. Hard to know but performance optimization books/blogs discuss it.
I'll Google for that, thank you!