geo3d.utils.multiprocessing =========================== .. py:module:: geo3d.utils.multiprocessing Functions --------- .. autoapisummary:: geo3d.utils.multiprocessing.run Module Contents --------------- .. py:function:: run(target: Callable, loop: list[Any], n_jobs: int) -> Optional[List[Any]] Run a target function in parallel over a loop using the built-in `multiprocessing` package. :param target: The function to call. :type target: Callable :param loop: The list of which to loop. :type loop: list :param n_jobs: The number of workers. :type n_jobs: int :returns: The list of results if the target returns values, otherwise None. :rtype: (Optional)