gpt4 book ai didi

python - 使用 cupy 时内存不足

转载 作者:太空宇宙 更新时间:2023-11-03 20:13:43 61 4
gpt4 key购买 nike

当我使用cupy处理一些大数组时,出现内存不足错误,但是当我检查nvidia-smi查看内存使用情况时,它没有达到我的GPU内存的限制,我我使用的是 nvidia Geforce RTX 2060,GPU 内存为 6 GB,这是我的代码:

import cupy as cp

mempool = cp.get_default_memory_pool()
print(mempool.used_bytes()) # 0
print(mempool.total_bytes()) # 0

a = cp.random.randint(0, 256, (10980, 10980)).astype(cp.uint8)
a = a.ravel()
print(a.nbytes) # 120560400
print(mempool.used_bytes()) # 120560640
print(mempool.total_bytes()) # 602803712
# when I finish create this array, the nvidia-smi shows like this
#+-----------------------------------------------------------------------------+
| NVIDIA-SMI 430.86 Driver Version: 430.86 CUDA Version: 10.2 |
|-------------------------------+----------------------+----------------------+
| GPU Name TCC/WDDM | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce RTX 2060 WDDM | 00000000:01:00.0 On | N/A |
| N/A 46C P8 9W / N/A | 1280MiB / 6144MiB | 1% Default |
+-------------------------------+----------------------+----------------------+

# but then I run this command, and error cames out
s_values, s_idx, s_counts = cp.unique(
a, return_inverse=True, return_counts=True)
# and the error shows
# cupy.cuda.memory.OutOfMemoryError: out of memory to allocate 964483584 bytes (total 5545867264 bytes)
# the nvidia-smi shows
# +-----------------------------------------------------------------------------+
| NVIDIA-SMI 430.86 Driver Version: 430.86 CUDA Version: 10.2 |
|-------------------------------+----------------------+----------------------+
| GPU Name TCC/WDDM | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce RTX 2060 WDDM | 00000000:01:00.0 On | N/A |
| N/A 45C P8 9W / N/A | 5075MiB / 6144MiB | 3% Default |
+-------------------------------+----------------------+----------------------+

似乎有足够的空间可以使用,为什么会出现这个错误,是因为我的GPU没有足够的内存,还是因为我的代码错误或者我没有正确分配内存。

最佳答案

964,483,584 不是比你的 mempool.total_bytes() 602,803,712 大吗?

正如评论中所说,您可以分批进行,而不是一次完成整个计算。

关于python - 使用 cupy 时内存不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58585688/

61 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com