Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用SLURM运行深度学习框架。我正在尝试将不同的数据容器集成到这个框架(hdf5、bcolz(ctable)和 zarr)。
使用 ctable 作为数据结构运行框架时出现错误
“slurmstepd:错误:在某些时候超出了步骤内存限制”。
我认为问题在于,在读取 ctable 时,没有ctable.close()旨在节省内存的函数。
ctable.close()
有谁知道在这种情况下如何释放内存?
我试过self.free_cachemem()了,但没有帮助。
self.free_cachemem()
谢谢你。