Here's MWE much more code that I use. In principle, he performs KDE integration with Monte Carlo ( kernel density estimation ) for all values ββlocated below a certain threshold (the integration method on this subject is proposed BTW: Integration of 2D kernel density estimation ).
import numpy as np from scipy import stats import time
The result looks something like this:
iso: 0.00259208679199 resample: 0.000817060470581 filter/sample: 2.10829401016 integral: 4.2200088501e-05
which clearly means that calling the filter / sample consumes almost all the time that the code uses to run. I have to run this block of code iteratively several thousand times so that it can get quite a lot of time.
Is there a way to speed up the filtering / sampling process?
Add
Here's a slightly more realistic MWE my actual code with the multi-threaded Ophion solution written on it:
import numpy as np from scipy import stats from multiprocessing import Pool def kde_integration(m_list): m1, m2 = [], [] for item in m_list:
The solution provided by Ophion works fine with the source code that I presented, but not with an error in this version:
Integral result: Exception in thread Thread-3: Traceback (most recent call last): File "/usr/lib/python2.7/threading.py", line 551, in __bootstrap_inner self.run() File "/usr/lib/python2.7/threading.py", line 504, in run self.__target(*self.__args, **self.__kwargs) File "/usr/lib/python2.7/multiprocessing/pool.py", line 319, in _handle_tasks put(task) PicklingError: Can't pickle <type 'function'>: attribute lookup __builtin__.function failed
I tried to move the calc_kernel function around, since one of the answers in this question is Multiprocessing: how to use Pool.map for the function defined in the class? that "the function you give map () must be available through the import of your module"; but I still can't get this code to work.
Any help would be greatly appreciated.
Add 2
Implementing the Ophion clause to remove the calc_kernel function and simply using:
results = pool.map(kernel, torun)
works to get rid of PicklingError , but now I see that if I create an initial m_list just about 62-63 items, I get this error:
Traceback (most recent call last): File "~/gauss_kde_temp.py", line 67, in <module> print 'Integral result: ', kde_integration(m_list) File "~/gauss_kde_temp.py", line 38, in kde_integration pool = Pool(processes=cores) File "/usr/lib/python2.7/multiprocessing/__init__.py", line 232, in Pool return Pool(processes, initializer, initargs, maxtasksperchild) File "/usr/lib/python2.7/multiprocessing/pool.py", line 161, in __init__ self._result_handler.start() File "/usr/lib/python2.7/threading.py", line 494, in start _start_new_thread(self.__bootstrap, ()) thread.error: can't start new thread
Since my actual list in my actual implementation of this code can contain up to 2000 elements, this problem makes the code unusable. Line 38 is:
pool = Pool(processes=cores)
obviously this has something to do with the number of cores i use?
This question "Unable to start a new thread error" in Python suggests using:
threading.active_count()
to check the number of threads that I have when I get this error. I checked and it always crashes when it reaches threads 374 . How can I create code around this problem?
Here's a new question related to this latest release: Stream error: cannot start a new stream