CuPy内存不足

时间:2018-11-16 02:27:49

标签: python chainer cupy

我一直在测试CuPy库,并使用einsum进行了简单的矩阵乘法:

C = cp.einsum('pqrs,rs->pq', A, B)

A和B的尺寸分别为(41,41,41,41)(41,41)。我还检查了它们的大小,分别是22606088字节和13448字节。

While running the code, I am getting the following error message:
OutOfMemoryError: out of memory to allocate 38000834048 bytes (total 38023468032 bytes)

它表明我的内存不足。是否可以选择将数据部分发送到设备并按批次执行操作?

1 个答案:

答案 0 :(得分:0)

我认为无法为一个数组部分发送数据。

我之前也遇到过同样的问题,这可能是由于杯状einsum效率尚未优化而引起的。 https://github.com/cupy/cupy/issues/19#issuecomment-322972682

如果您可以尝试使用transposereshapematmul等替换einsum函数,请尝试使用这些。

我猜

C = cp.einsum('pqrs,rs->pq', A, B)

等同于

p, q, r, s = A.shape
A = cp.reshape(A, (p, q, r*s))
B = cp.reshape(B, (1, 1, r*s))
C = cp.sum(A * B, axis=2)