関数 の線形正準変換を評価してプロットする小さなプログラムを作成しています。
from scipy import *
from scipy.integrate import *
import time
from threading import *
def lct(f, a, b, c, d):
def X(u):
coeff=sqrt(-1j)*e**(1j*pi*(d/b)*(u**2))
integrand_R= lambda t,f,a,b: (e**(-2j*pi*u*t/b)*e**(1j*pi*a*t**2/b)*f(t)).real
integrand_I= lambda t,f,a,b: (e**(-2j*pi*u*t/b)*e**(1j*pi*a*t**2/b)*f(t)).imag
# integral= sum of integrals of real and imaginary parts
integral=quad(integrand_R,-Inf,0,args=(f,a,b))[0]+1j*quad(integrand_I,-Inf,0,args=(f,a,b))[0]
#print(integral)
return coeff*integral
return X
class Executor(Thread):
def __init__(self, f):
self._f = f
Thread.__init__(self)
def run(self):
y=[self._f(x_i) for x_i in x]
def result():
return y
#thread pool
class Pool:
def map(self,f,x):
executors=[Executor(f) for i in range(1)]
x=x.reshape(8,-1)
for i in range(len(executors)):
executors[i].x=x[i]
executors[i].start()
#executors[i].join()
#raise TypeError
for e in executors:
e.join()
raise TypeError#execution does not make it this far if two threads are used
start=time.clock()
p=Pool()
x=arange(4,step=0.005)
test_lct=lct(lambda x: sin(x),1,2,3,7)
def test():
y=abs(p.map(test_lct,x))
raise TypeError
figure(figsize=(6*3.13,4*3.13/2))
plot(x,y)
for i in range(y.size):
if y[i]>1e15:
print(x[i])
print(y[i])
print('\n')
print(x[130:140])
print('\n')
print(y[130:140])
print('\n')
test()
test_lct=lct(lambda x: sin(2*x),1,2,3,7)
test()
stop=time.clock()
print(stop-start)
作業はスレッド プールによって 8 つのスレッドに分割されるはずですが、executors=[Executor(f) for i in range(1)]
(26 行目) をに変更するとexecutors=[Executor(f) for i in range(2)]
、Python がクラッシュします: "python.exe は動作を停止しました"。なぜ2つのスレッドがPythonをクラッシュさせるのですか?
注: これは、plot() が呼び出される前に停止するため、対話型インタープリター / matplotlib なしで実行できます。