随笔分类 - linux
摘要:查看显卡详细信息: // save as test_cu_info.cu #include "device_launch_parameters.h" #include <iostream> int main() { int deviceCount; cudaGetDeviceCount(&devic
阅读全文
摘要:启动xrdp服务: sudo systemctl start xrdp 2.关闭xrdp服务 sudo systemctl stop xrdp 查看xrdp状态 sudo systemctl status xrdp
阅读全文
摘要:加载函数 from torch.utils.tensorboard import SummaryWriter 新建文件夹 os.makedirs(f'{output_dir}/log', exist_ok=True) 初始化 writer = SummaryWriter('./log') 循环画曲线
阅读全文
摘要:使用端口进行连接 sftp -P remote_port remote_user@remote_host 从远程服务器拉取文件 get /path/remote_file 从远程服务器拉取文件夹到当前目录 get -r /path/remote_file ./ 上传本地文件到服务器当前目录 put
阅读全文