forked from mne-tools/mne-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parallel.py
50 lines (42 loc) · 1.25 KB
/
parallel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""Parallel util function
"""
# Author: Alexandre Gramfort <[email protected]>
#
# License: Simplified BSD
def parallel_func(func, n_jobs, verbose=5):
"""Return parallel instance with delayed function
Util function to use joblib only if available
Parameters
----------
func: callable
A function
n_jobs: int
Number of jobs to run in parallel
verbose: int
Verbosity level
Returns
-------
parallel: instance of joblib.Parallel or list
The parallel object
my_func: callable
func if not parallel or delayed(func)
n_jobs: int
Number of jobs >= 0
"""
try:
from sklearn.externals.joblib import Parallel, delayed
parallel = Parallel(n_jobs, verbose=verbose)
my_func = delayed(func)
if n_jobs == -1:
try:
import multiprocessing
n_jobs = multiprocessing.cpu_count()
except ImportError:
print "multiprocessing not installed. Cannot run in parallel."
n_jobs = 1
except ImportError:
print "joblib not installed. Cannot run in parallel."
n_jobs = 1
my_func = func
parallel = list
return parallel, my_func, n_jobs