上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: 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:34 0x7F 阅读(10) 评论(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 阅读(18) 评论(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:56 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) 编辑
摘要: 大纲 指令集与简单CPU处理器设计 复杂CPU流水线与乱序执行(指令级并行) 高速缓存、内存及存储器(存储) 多线程与多核系统(线程级并行) 向量处理器与GPU(数据级并行) 微码与超长指令字处理器 片上网络 仓库级计算机与云计算、分布式 系统评价与性能分析 硬件安全、硬件虚拟化和加速 指令集与简单 阅读全文
posted @ 2023-09-21 10:37 0x7F 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Wildcard The wildcard in makefile is similar with macro in C/C++, it isn't similar with wildcard in linux shell, so it doesn't expend automatically. o 阅读全文
posted @ 2023-09-16 17:49 0x7F 阅读(4) 评论(0) 推荐(0) 编辑
摘要: After we install Xcode Command Line Tools, we will get gcc and g++ in /Library/Developer/CommandLineTools/usr/bin and the same contents in /usr/bin. B 阅读全文
posted @ 2023-09-15 17:29 0x7F 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 关于访问控制,是CPU基于段实现的一种机制。而所谓的高低特权指令和数据,则是指高低特权的指令和数据。 高特权指令可以访问高特权和低特权数据,低特权指令仅可以访问低特权数据 注意以上仅仅是指令访问数据的规则,对于指令调用指令与之不同,无论是高特权还是低特权指令,均不能调用不同权限的指令。换句话说,相同 阅读全文
posted @ 2023-09-11 19:17 0x7F 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Asynchronization (Multithreading) The first thing we need to do is understanding the correlations between multithreading and parallel computing. Multi 阅读全文
posted @ 2023-09-10 22:06 0x7F 阅读(13) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页