上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: link 阅读全文
posted @ 2022-02-20 22:28 ijpq 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 0x01 寻址基本理解 一般常见对内存的理解是将他看成是一个数组. 数组元素肯定有个大小, 数组的元素还需要有个序号. 这个数组的序号就是内存的地址, 而数组元素的大小是内存寻址的方式,最为常见的是按字节寻址,即每个数组元素(单元)可以存储一个字节大小的内容. cmu15213的例子 我们将内存地址 阅读全文
posted @ 2022-02-20 22:26 ijpq 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 变量名和等号之间不能有空格 推荐给所有变量加上花括号,这是个好的编程习惯 字符串可以用单引号,也可以用双引号,也可以不用引号。 单引号里的任何字符都会原样输出,单引号字符串中的变量是无效的 单引号字串中不能出现单独一个的单引号(对单引号使用转义符后也不行),但可成对出现,作为字符串拼接使用。 双引号 阅读全文
posted @ 2022-02-20 22:25 ijpq 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Guide to Faster, Less Frustrating Debugging Guide to Faster, Less Frustrating Debugging Norman Matloff University of California at Davis (530) 752-195 阅读全文
posted @ 2022-02-20 22:25 ijpq 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 涉及内容: awk if for split print for嵌套 echo 's3://clearml-train-log/video4%2Fhuman_reid/distributed_qa2.7e24d4e98f764883a8e42cb3f362a19d/models' | awk '{l 阅读全文
posted @ 2022-02-17 20:38 ijpq 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 0x00 基础知识 Prior to the 5.0 release, CUDA did not support separate compilation, so CUDA code could not call device functions or access variables across 阅读全文
posted @ 2022-01-14 21:41 ijpq 阅读(407) 评论(0) 推荐(0) 编辑
摘要: bit operations /2, *2 odd or even 实现mod 当计算\(a \mod b\) 且 b是\(2^n\)时,可以直接使用\(a \& (b-1)\)来计算\(a \mod b\)​。 原理为:$a \mod b \(是\)a/b$​的余数。 因为\(b=2^n\),\( 阅读全文
posted @ 2021-12-20 19:36 ijpq 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 问题 类似,可以看到下面的这个问题 回答 总的来说,浮点数无法表示0.1。 这是因为,根据IEEE浮点数标准,float的尾数是23位,权分别为$2^{-1},2^{-2},...$。0.1 = 1/10 = 1/2 * 1/5 = 1 * %2^{-1}% * 1/5,而1/5无法直接找到对应的权 阅读全文
posted @ 2021-12-19 18:02 ijpq 阅读(391) 评论(0) 推荐(0) 编辑
摘要: pre 使用了opencv_contrib中的plot 模块,contrib的安装过程存在问题,如果不能解决,可以把plot.cpp/plot.h相关文件先编译一遍,之后再编译的时候带着obj。 需要一些基础的opencv配置知识,知道涉及到的模块该如何build,如何include step1 g 阅读全文
posted @ 2021-12-16 20:15 ijpq 阅读(551) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/cpp/preprocessor/hash-include-directive-c-cpp?redirectedfrom=MSDN&view=msvc-170 阅读全文
posted @ 2021-12-16 20:06 ijpq 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页