上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 106 下一页
摘要: 1.IO读写原理 https://blog.csdn.net/qq_31815507/article/details/115673210 用户程序进行IO读写,依赖于操作系统底层的IO读写,基本上会用到底层的read&write两大系统调用。read系统调用,并不是直接从物理设备把数据读取到内存中, 阅读全文
posted @ 2021-05-24 18:34 lypbendlf 阅读(374) 评论(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 阅读(53) 评论(0) 推荐(0)
摘要: 1.Linux内核子系统 https://blog.csdn.net/qq_36016407/article/details/73558361 系统调用子系统、进程管理、虚拟文件子系统、内存管理、网络管理。 Linux内核中各个子系统相互依赖,当其中某个子系统状态发生改变时,就必须使用一定的机制告知 阅读全文
posted @ 2021-05-24 00:53 lypbendlf 阅读(364) 评论(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 阅读(297) 评论(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 阅读(69) 评论(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 阅读(495) 评论(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 阅读(5334) 评论(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 阅读(1305) 评论(0) 推荐(0)
摘要: 1.概念 当一个函数或类被声明为另一个类的友元时,表示它可以直接访问private私有变量,避免成员函数的频繁调用,提高运行效率,但破坏了封装性。 友元是单向的,不能被继承,且不具有传递性。一个函数可以是多个类的友元函数。 2.例子 转自:https://blog.csdn.net/fanyun_0 阅读全文
posted @ 2021-04-10 17:30 lypbendlf 阅读(142) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/u012611878/article/details/79200544 https://my.oschina.net/assange/blog/542896 1.赋值与初始化 初始化为变量分配空间,一般变量是在编译时根据定义初始化;赋值是擦除旧值与写 阅读全文
posted @ 2021-04-10 16:47 lypbendlf 阅读(306) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 106 下一页