我一直在测试 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)
这表明我的内存不足。是否有任何选项可以将部分数据发送到设备并批量执行操作?