摘要:
class Container { public: virtual double& operator[](int) = 0; virtual int size() const = 0; virtual ̃Container() {} // pure virtual function // const 阅读全文
摘要:
https://www.jianshu.com/p/ac019dc3a0f7 阅读全文
摘要:
核心问题:真值表构建好后,可对其进行优化,并且转换为门电路。这个过程是完全机械的。是如何进行的呢?(计算机组成与设计 软硬件接口 RISCV - Chapter 4.4.1最后) 无关项 分为输入无关项和输出无关项。输入无关项:当输出对于某些输入组合来说是无关项时,可以自由组合这些输入是1还是0. 阅读全文
摘要:
RAM https://www.cnblogs.com/ijpq/p/16222237.html 阅读全文
摘要:
地址宽度2~24,地址宽度(Address Bit Width)是24位,则能够表示的地址数量是$ 2 ^ {24} = 16,777,216$,每个数值最多占用32位(Data Bit Width)。 RAM支持修改数值,通过poke tool实现 内存中的值直接显示在元器件上面,地址是在每一行的 阅读全文
摘要:
calling convention Entry sequence (the function prologue) a few instructions at the beginning of a function, which prepare the stack and registers for 阅读全文
摘要:
例子 例如需要编译cu时,需要-lcudart,编译命令中要加入 -L/data/cuda/cuda-10.2/cuda/lib64 -lcudart 编译成功: 如果去掉-L/data/cuda/cuda-10.2/cuda/lib64 这是因为没有在默认的动态链接库目录中找到cudart.so 阅读全文
摘要:
# profiler ### nvprof 最早期的profiler,只提供cli ### nvvp 进化版本的nvprof,提供了gui ### ncu 写这个记录的时候,cuda已经不再支持nvprof,nvvp也变得异常难用(因为很多功能,比如metrics,去掉了)。现在推荐用nsight 阅读全文
摘要:
15-213课程的实验目录 1.data lab 1.bomb lab 2.c review 3.rop in attack lab this page is catalog of book&pdf&ppt&video and any other learning perception notes 阅读全文
摘要:
we could dynamic symbol printf with libc.so instead of include<stdio.h> in source file. a.c int main(){ printf("hi! .so success!\n"); return 0;} gcc a 阅读全文