火炬安装失败:“设备上没有剩余空间”

问题描述 投票:0回答:2

无法重新安装最近的火炬。克隆新的repo并尝试通过执行一系列install.sh调用的make安装导致:

[ 75%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTDouble.cu.o
[ 76%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseDouble.cu.o
[ 77%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareDouble.cu.o
[ 78%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceDouble.cu.o
[ 80%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedDouble.cu.o
/usr/include/x86_64-linux-gnu/bits/mathcalls.h(234) (col. 12): catastrophic error: error while writing generated C++ file: No space left on device

1 catastrophic error detected in the compilation of "/tmp/tmpxft_0001f39b_00000000-5_THCTensorMaskedDouble.cpp4.ii".
Compilation terminated.
fatbinary fatal   : Could not write file '/tmp/tmpxft_0001efb5_00000000-2_THCTensorMathCompareTHalf.fatbin.c'
CMake Error at THC_generated_THCTensorMathCompareTHalf.cu.o.cmake:267 (message):
  Error generating file
  /local/pavels/torch/extra/cutorch/build/lib/THC/CMakeFiles/THC.dir/generated/./THC_generated_THCTensorMathCompareTHalf.cu.o

/tmp上没有足够的空间,这是一台远程机器,所以我没有sudo访问权来增加它。这有什么解决方法吗?基本上我想知道是否有任何方法强制make商店编译文件不在/tmp

torch tmp
2个回答
1
投票

看来我只需要创建tmp目录并将其设置为TMPDIR env变量。

mkdir $HOME/tmp
export TMPDIR=$HOME/tmp

0
投票

这取决于tmp是什么。

有时,作为优化,tmp安装在ramdisk中。您可以使用mount/etc/fstab查看。

如果不是这种情况,请确保/tmp所在的磁盘分区有足够的空间,或者删除其他未使用的临时文件。

包装在许多发行版中的BleachBit可以帮助您释放空间。

© www.soinside.com 2019 - 2024. All rights reserved.