摘要:
首先奉上源代码 class A{ private: int i; public: A() { std::cout << "default constructor is called" << std::endl; i = 0; } A(int _i): i(_i) {} A(const A& obj) 阅读全文
摘要:
在float中normal数字表示如下:其中f是小数部分的十进制数值$$Value_{10}=2^{E-127}\times(1.f)$$ 当\(E=1\)的时候,\(.f=\underbrace{{000...000}_2}_\text{23}\)的时候,会得出最小的normal数值是$$Valu 阅读全文
摘要:
参照卡内基梅隆大学的一篇讲义 首先活跃性是指某一个变量会被后续计算中使用,那么就说此变量在此处开始活跃。 "A variable is live at a given program point if it will be used during the remainder of the compu 阅读全文
摘要:
关于内存dimm硬件层级结构,发现了一片比较好的文章 https://cat.chrizchow.com/2022/02/dimm-channel-rank-chip-bank-rowcolumn.html 参考文献也非常不错,可以视频是全英文,没有耐心听下去。 其实在了解这个知识点之前,是为了搞清 阅读全文
摘要:
引入warp可以进行延迟隐藏(latency hidding)。 详情可以参看这两篇blog,写的简介明了。 https://www.cnblogs.com/cngpus/p/16223504.html https://www.cnblogs.com/cngpus/p/16223716.html 阅读全文