上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 107 下一页
摘要: 转自:https://blog.csdn.net/DLUTBruceZhang/article/details/9050467 https://www.cnblogs.com/yc3110/p/10440613.html 1.用户与操作系统关系 在用户空间中的进程要通过系统调用才能访问系统资源。系统 阅读全文
posted @ 2021-05-25 09:17 lypbendlf 阅读(1529) 评论(3) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/qq_31815507/article/details/115673210 1.阻塞与非阻塞 阻塞IO,指的是需要内核IO操作彻底完成后,才返回到用户空间执行用户的操作。阻塞指的是用户空间程序的执行状态。传统的IO模型都是同步阻塞IO。 非阻塞是忙、 阅读全文
posted @ 2021-05-24 21:36 lypbendlf 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1.IO读写原理 https://blog.csdn.net/qq_31815507/article/details/115673210 用户程序进行IO读写,依赖于操作系统底层的IO读写,基本上会用到底层的read&write两大系统调用。read系统调用,并不是直接从物理设备把数据读取到内存中, 阅读全文
posted @ 2021-05-24 18:34 lypbendlf 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 1.查看mysql的运行状态 systemctl status mysql.service 2.安装与初始化 https://t.codebug.vip/questions-691282.htm sudo apt install mysql-server mysql-client #同时安装服务器和 阅读全文
posted @ 2021-05-24 01:10 lypbendlf 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1.Linux内核子系统 https://blog.csdn.net/qq_36016407/article/details/73558361 系统调用子系统、进程管理、虚拟文件子系统、内存管理、网络管理。 Linux内核中各个子系统相互依赖,当其中某个子系统状态发生改变时,就必须使用一定的机制告知 阅读全文
posted @ 2021-05-24 00:53 lypbendlf 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/aiguona/p/7281739.html 1.初始化与操作 #include <deque> deque<int>s1; deque<string>s2; deque<node>s3; /*node为结构体,可自行定义。*/ //a) 构造函 阅读全文
posted @ 2021-05-22 17:09 lypbendlf 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1.可视化 https://docs.ray.io/en/master/tune/user-guide.html#tune-autofilled-metrics 在训练期间,除用户提供的值外,Tune还将自动记录以下指标。 所有这些都可以用作停止条件,或作为参数传递给Trial Schedulers 阅读全文
posted @ 2021-05-20 13:48 lypbendlf 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1.版本 python3.7 conda create -n sc_37 python=3.7 pytorch1.4.0 torchvision0.5.0 conda install pytorch torchvision cudatoolkit=10.0 -c pytorch tensorboar 阅读全文
posted @ 2021-05-19 11:35 lypbendlf 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 1.问题 Could not load dynamic library 'libcudart.so.11.0'; dlerror: libcudart.so.11.0: cannot open shared object file: No such file or directory; LD_LIB 阅读全文
posted @ 2021-05-18 15:49 lypbendlf 阅读(5048) 评论(0) 推荐(0) 编辑
摘要: 1.尝试解决 https://stackoverflow.com/questions/49175406/jupyter-notebook-operationalerrordisk-i-o-error ipython profile create #但报错 ImportError: No module 阅读全文
posted @ 2021-05-14 10:00 lypbendlf 阅读(1187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 107 下一页