nccl test 环境

在之前的服务器上发现安装的nccl,不能正确的运行nccl test测试,在尝试了多种方法之后,发现需要重新编译安装nccl https://github.com/nvidia/nccl 按照官方github上说明进行编译安装 apt install build-essential devscripts debhelper fakeroot -y make -j pkg.debian.build dpkg -i build/pkg/deb/*.deb ...

December 30, 2020 · 1 min · 22 words · eonh1u

ssh 私钥连接服务器记录

若执行ssh-add /path/to/xxx.pem是出现这个错误:Could not open a connection to your authentication agent,则先执行如下命令即可: ssh-agent bash 然后执行ssh-add xxx.pem 如果出现ssh “permissions are too open” error,则执行chmod命令修改xx.pem文件权限 chmod 400 ~/.ssh/id_rsa 或者 chmod 600 ~/.ssh/id_rsa ...

October 15, 2020 · 1 min · 133 words · eonh1u