このコードを実行するたびにコンピューターがフリーズする理由を誰か説明してもらえますか?
from numbapro import cuda
import numpy as np
from timeit import default_timer as time
n = 100
dtype = np.float32
@cuda.jit('void(float32[:,:], float32[:], float32[:])')
def cu_matrix_vector(A, b, c):
y, x = cuda.grid(2)
if x < n and y < n:
c[y] = 0.0
for i in range(n):
c[y] += A[y, i] * b[i]
A = np.array(np.random.random((n, n)), dtype=dtype)
B = np.array(np.random.random((n, 1)), dtype=dtype)
C = np.empty_like(B)
blockDim = 32, 8
gridDim = (n + blockDim[0] - 1)/blockDim[0], (n + blockDim[1] - 1)/blockDim[1]
print 'blockDim = (%d,%d)' %blockDim
s = time()
stream = cuda.stream()
with stream.auto_synchronize():
dA = cuda.to_device(A,stream)
dB = cuda.to_device(B,stream)
dC = cuda.to_device(C,stream)
cu_matrix_vector[(bpg, bpg), (tpb, tpb),stream](dA, dB, dC)
dC.to_host(stream)
e = time()
tcuda = e - s
print tcuda
コードを打った後、コンピューターがフリーズします。理由はわかりません。事前にすべての助けに感謝します。