摘要: 阿里云盘 / GeektimeCollection1 / 01专栏课 / 83-编译原理之美 极客时间 |编译原理之美 阅读全文
posted @ 2024-03-07 20:34 0x7F 阅读(2) 评论(0) 推荐(0) 编辑
摘要: GEMM(General Matrix Multiplication)-通用矩阵乘 BLAS (Basic Linear Algebra Subprograms) - 基本线性代数子程序 SGEMM (Single precision General Matrix Multiply) - 单精度矩阵 阅读全文
posted @ 2024-03-07 10:25 0x7F 阅读(7) 评论(0) 推荐(0) 编辑
摘要: # 查询日志 pmset -g log | grep -e "Wake from" -e "DarkWake" -e "due to" # 查看当前所有睡眠计划 pmset -g custom # 设置使用电池和连接充电器时均关闭powernap sudo pmset -a powernap 0 # 阅读全文
posted @ 2024-02-15 16:20 0x7F 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 场景 在编译wine前,执行.configure检查依赖项是否都满足条件,发现bison的版本较低。 检查发现存在一个/usr/bin/bison,但是从未安装过这一命令,所以考虑到是XTools中携带的,检查后发现确实如此 然后就又一次引发了我对于XTool的疑问,/usr/bin/下和XTool 阅读全文
posted @ 2024-02-08 14:48 0x7F 阅读(4) 评论(0) 推荐(0) 编辑
摘要: There is a confusing question, i.e. the name of this method is dynamic programming, how can we understand it ? The dynamic programming in chinese is " 阅读全文
posted @ 2023-10-20 11:48 0x7F 阅读(8) 评论(0) 推荐(0) 编辑
摘要: C89/C90 (ANSI C or ISO C) was the first standardized version of the language, released in 1989 and 1990, respectively C99 (ISO/IEC 9899:1999) C11 (ISO 阅读全文
posted @ 2023-10-14 20:35 0x7F 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 首先,问题的前提是:不同数据类型的实际大小是依赖于编译器的具体实现的,那么假设在一个long为8B的平台,使用long作为例如memcpy的参数进行数据移动,并且指定的要移动的字节数超过了4B所能表示的最大值,那么如果将此代码移动到一个long为4B的平台,代码就会出现问题,因为此时的long已无法 阅读全文
posted @ 2023-10-14 20:34 0x7F 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 数学基础 卷积 卷积这一概念从最原始来说属于一种数学的运算方法,两个数列进行卷积,是指将一个数列翻转后,从另一个数列最左侧开始滑动求和 来到计算机科学中,由于卷积核往往采用对称矩阵,所以翻转这一动作实际就可以忽略掉了。通过卷积核中数据的不同排列,实现提取出输入图片中的特定特征。 训练 + 预测 目前 阅读全文
posted @ 2023-10-11 13:36 0x7F 阅读(14) 评论(0) 推荐(0) 编辑
摘要: lambda structure [capture list] (parameter list) -> return type { function body } (parameter list) and return type are optional Value and Reference ca 阅读全文
posted @ 2023-09-27 13:57 0x7F 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Operator[] The performance of [] in C and C++ is different. e.g., when you excute A[index] If A is a object, it will call the operator[] If A is a poi 阅读全文
posted @ 2023-09-22 21:47 0x7F 阅读(2) 评论(0) 推荐(0) 编辑