79353663

Date: 2025-01-13 23:33:23
Score: 1
Natty:
Report link

joblib.Parallel does not have a memory locking function. There are two ways to bypass this: (1) specify it in the Parallel call using require='sharedmem' and (2) use automated memory mapping for numpy arrays.

Other methods can also be used but do not seem to be very efficient. More information and usage examples are provided at: https://joblib.readthedocs.io/en/latest/parallel.html#shared-memory-semantics

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: stansy