RuntimeError: [enforce fail at C:\actions-runner\_work\pytorch\pytorch\builder\windows\pytorch\c10\core\impl\alloc_cpu.cpp:72] data. DefaultCPUAllocator: not enough memory: you tried to allocate 28481159168 bytes
时间: 2023-03-05 13:27:18 浏览: 1274
pytorch模型提示超出内存RuntimeError: CUDA out of memory.
5星 · 资源好评率100%
这是一条计算机运行时错误提示信息,意思是在执行程序时出现了错误。具体的错误是内存不足,程序试图分配超过计算机内存容量的空间,导致运行失败。错误发生在 Windows 操作系统下 PyTorch 框架的一个分配内存的函数中。具体错误位置在 C:\actions-runner\_work\pytorch\pytorch\builder\windows\pytorch\c10\core\impl\alloc_cpu.cpp 文件的第 72 行。提示信息中的 "data. DefaultCPUAllocator" 表示程序默认的 CPU 内存分配器,"28481159168 bytes" 是程序试图分配的内存字节数,约为 28GB。
阅读全文