这篇文章是对我的网站的基本介绍,Please read it first!
-
Sticky
-
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Qu... -
Chapter 10 - Graphs
定义 注意 补充、解释 其他 1 Graphs and Graph ModelsA graph G=(V,E) consists of V, a nonempty set of vertices (or nodes) and E, a set of edges. Each edge has either one or two vertices associated with it, ca... -
HPC-Intro
准备HPC的lab时的一些琐碎的知识,记录一下 写信时,信封会写上收件地址和收件人,如果把网络世界比作城市,网卡就像是城市中的建筑,MAC地址就是建筑的物理地址,ip地址就是住在建筑里的人 在计算机网络中发送信息,我们只需要填写目标IP和内容,操作系统会通过查询arp表获取对方的MAC地址,从网卡发出 设备的通信都是靠网卡进行的,每张网卡出厂时都会写入一个MAC地址。一个计算机通过网线连到交... -
Chapter 6 - Registers and Register Transfers
1 RTL-based Design Models传统的状态图 / 状态表设计只适用于小规模电路:当寄存器位数 n 增大时,状态数呈 2ⁿ指数增长,状态表会变得无法处理。RTL(寄存器传输级)设计是解决复杂时序电路设计的核心方法:基本构建块:寄存器(计数器、移位寄存器等)+ 组合逻辑电路(加法器、多路选择器等)核心思想:描述数据在寄存器之间的传输和处理过程,而非底层门级连接优势:抽象度高、接... -
Verilog
Verilog Syntax整数数值表示方法数字声明时,合法的基数格式有 4 中,包括:十进制(‘d 或 ‘D),十六进制(‘h 或 ‘H),二进制(’b 或 ‘B),八进制(’o 或 ‘O)。数值可指明位宽,也可不指明位宽。 12345678910111213141516171819// BINARY representations3'b010; // size=3 bits, binar... -
Chapter 11 - Sorting (2)
定义 注意 补充、解释 其他 1 Quick Sort快速排序的核心是分而治之,步骤如下: 选主元(Pivot):从数组中任选一个元素作为基准值 划分(Partition):将数组拆分为两部分 —— 左边所有元素≤主元,右边所有元素≥主元 递归排序:分别递归排序左右两个子数组 合并:左右子数组有序后,自然与主元拼接成完整有序数组 123456void Quicksort(Element... -
Chapter 9 - Relations
定义 注意 补充、解释 其他 1 Relations and Their PropertiesDefinitionA binary relation from a set to a set is a subset of . 例如,从A到B的函数f的图像就是一个从A到B的关系A={1,0,-1}, B={0,1}R={(1,1), (-1,1), (0,0)} Definition... -
Chapter 4 - Sequential Circuits
1 Sequential Circuit DefinitionA circuit whose output depends not only on the present input but also on the history of the input iscalled a sequential circuit. Figure 4-1(a) is block diagram of a s...