服务器
wang禾
这个作者很懒,什么都没留下…
展开
-
服务器数据传输
xshell登录服务器以后往gpu结点传输文件:scp -r /home/data_myname/file.txt myname@gpu:/home/gpu_myname(用xftp从本地传到服务器,然后在服务器用上面的命令传到gpu结点)...转载 2018-05-15 14:25:30 · 179 阅读 · 0 评论 -
无root权限服务器gpu节点下tensorflow源码安装过程及问题
服务器环境: CentOS Linux release 7.2.1511 (Core)问题: 1.没有root权限,不能使用sudo命令,所有包都必须安装在自己的目录下 2.服务器没有联网,配置文件中的包的链接无法直接下载,必须提前自己下载,通过xftp传入服务器,再用scp命令传到gpu 节点 scp –r /home/path usrname@gpu:/home/path解决: ...原创 2018-06-13 11:25:22 · 1169 阅读 · 1 评论 -
Ubuntu登录ssh
参考:https://blog.csdn.net/dearwind153/article/details/52555172首先升级apt-get: sudo apt-get update安装ssh : sudo apt-get install openssh-server报错:解决: 1.sudo apt-get autoremove openssh-client openssh...转载 2018-06-19 17:07:01 · 175 阅读 · 0 评论 -
服务器安装nccl
问题:在服务器源码安装tensorflow-gpu时,需要配置nccl,但是服务器不联网,不能从github上下载,只能在本地安装解决:从官网下载nccl的安装包(对应自己的cuda版本)下载地址:https://developer.nvidia.com/nccl/nccl-download 找对应的版本,服务器是centos系统,所以选择O/S agnostic版本将下载好的...原创 2018-10-24 17:47:23 · 5777 阅读 · 0 评论 -
在服务器安装tensorflow-gpu(无网络,无root权限)
源码安装提前装好NVIDIA驱动,cuda9.0,cudnn,安装bazel-0.15,这里tensorflow-gpu直接从github上下载源码,下载地址:https://github.com/tensorflow/tensorflow解压,进入解压目录./configure配置里只设置使用cuda,因为我是在自己目录下安装的cuda,所以需要修改cuda路径然后对于n...原创 2018-10-24 18:30:19 · 1934 阅读 · 0 评论 -
保存numpy数组内容到txt文件,用f.write方式
对于数组a,a_s=a.astype(str) #不做该类型转换会报错f.write(a_s[0]])原创 2018-11-06 21:39:35 · 7248 阅读 · 0 评论