Loading

摘要: 背景:最近遇到一个bug,需要修改 RHEL 8.7 kernel config 的配置参数,然后重新安装该kernel。踩过一些坑,复盘整理。 查询当前的kernel uname -r 4.18.0-477.15.1.el8_8.x86_64 这是当前运行的内核版本。版本号的不同部分表示以下信息: 阅读全文
posted @ 2023-07-26 23:23 aalanwyr 阅读(94) 评论(0) 推荐(0) 编辑
摘要: ✈️交通:飞机 上海->潮汕浦东T2->揭阳 660~760 正常价格4/29 4/30 1000+5/1 660 (21:10~23:25)节后 五月份 21:10~23:25 600~700 杭州萧山->揭阳日常 10:10->12:00 6204/29 4/30 1000+节后 10:10-> 阅读全文
posted @ 2023-04-10 22:09 aalanwyr 阅读(75) 评论(0) 推荐(0) 编辑
摘要: That’s how to think about deep neural networks going through the “training” phase. Neural networks get an education for the same reason most people do 阅读全文
posted @ 2023-03-02 01:05 aalanwyr 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Framework - A software platform which supports machine learning algorithms. To explore various frameworks, click here. Tensorflow - An open-source num 阅读全文
posted @ 2023-03-02 00:56 aalanwyr 阅读(11) 评论(0) 推荐(0) 编辑
摘要: In this article, we will cover just-in-time and ahead-of-time compilation. We will look at it in the context of an Angular project, but the principles 阅读全文
posted @ 2023-01-09 23:25 aalanwyr 阅读(47) 评论(0) 推荐(0) 编辑
摘要: LINK: https://www.quora.com/What-is-an-atomic-instruction This term is applied to instructions that execute two or more separate accesses to memory us 阅读全文
posted @ 2023-01-08 21:48 aalanwyr 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 为了获取linux 当前的内存状态信息,可以直接使用Linux 提供的系统调用 sysinfo, 但是 sysinfo 获取的信息比较少,只有以下部分内容,其中totalram/ freeram/ sharedram/ bufferram 是一类,需要注意的是这里还缺usedram, usedram 阅读全文
posted @ 2023-01-04 22:56 aalanwyr 阅读(1519) 评论(0) 推荐(0) 编辑
摘要: 💡💡💡写这篇小结的时候,已经跨过了2022年,今天是23年的伊始,趁这一切的开始,简单对22年做一个简单的小结,并制定一下23年的task list吧😀 🎯首先回顾去年的任务清单: 1.work life balance ,少熬夜,😁坚持锻炼,保重身体,身体是革命的本钱,尽量保证一周一次 阅读全文
posted @ 2023-01-02 20:08 aalanwyr 阅读(91) 评论(1) 推荐(1) 编辑
摘要: 行为型模式 模板模式 在含有继承结构的代码中,模板方法模式是非常常用的。用一个统一的父类实现定义所有的方法和接口。不同的子类来完成自己具体的实现。 父类定义了骨架(调用哪些方法及顺序),某些特定方法由子类实现 模板方法只负责定义第一步应该要做什么,第二步应该做什么,第三步应该做什么,至于怎么做,由子 阅读全文
posted @ 2022-12-16 22:06 aalanwyr 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 结构型模式 建型模式介绍了创建对象的一些设计模式,这节介绍的结构型模式旨在通过改变代码结构来达到解耦的目的,使得我们的代码容易维护和扩展。 代理模式 第一个要介绍的代理模式是最常使用的模式之一了,用一个代理来隐藏具体实现类的实现细节,通常还用于在真实的实现的前后添加一部分逻辑。 既然说是代理,那就要 阅读全文
posted @ 2022-12-16 22:04 aalanwyr 阅读(18) 评论(0) 推荐(0) 编辑