[COURSE] Add ETH Computer Architecture Course (#468)

* Add 2 course

* fix my commit

* Some simple fix

* rename CA.md
This commit is contained in:
Yuchen Mu 2023-06-30 17:32:59 +08:00 committed by GitHub
parent 6de885e047
commit c36feaca99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 4 deletions

29
docs/体系结构/CA.md Normal file
View File

@ -0,0 +1,29 @@
# ETH: Computer Architecture
## 课程简介
- 所属大学ETH Zurich
- 先修要求:[DDCA](https://csdiy.wiki/%E4%BD%93%E7%B3%BB%E7%BB%93%E6%9E%84/DDCA/)
- 编程语言C/C++verilog
- 课程难度:🌟🌟🌟🌟
- 预计学时70 小时 +
讲解计算机体系结构,授课教师是 Onur Mutlu 教授。本课程根据课程描述应该是[DDCA](https://csdiy.wiki/%E4%BD%93%E7%B3%BB%E7%BB%93%E6%9E%84/DDCA/)的进阶课程课程目标是学习如何为类MIPS处理器设计控制和数据通路硬件如何通过流水线和简单的超标量执行使机器指令同时执行以及如何设计快速的内存和存储系统。根据同学反馈从课程本身的难度上说至少高于 CS61C 课程的部分内容十分前沿B站搬运UP主建议大家作为卡内基梅隆大学18-447的补充。所提供的阅读材料十分丰富相当于听了一学期讲座。
以下是官网的介绍:
>We will learn the fundamental concepts of the different parts of modern computing systems, as well as the latest major research topics in Industry and Academia. We will extensively cover memory systems (including DRAM and new Non-Volatile Memory technologies, memory controllers, flash memory), new paradigms like processing-in-memory, parallel computing systems (including multicore processors, coherence and consistency, GPUs), heterogeneous computing, interconnection networks, specialized systems for major data-intensive workloads (e.g. graph analytics, bioinformatics, machine learning), etc. We will focus on fundamentals as well as cutting-edge research. Significant attention will be given to real-life examples and tradeoffs, as well as critical analysis of modern computing systems.
编程实践采取 Verilog 设计和模拟类 MIPS 流水线处理器的寄存器传输RT实现以此加强对理论课程的理解。因此前几个实验会有 verilog 的 CPU 流水线编程。同时还将使用C语言开发一个周期精确的处理器模拟器并使用该模拟器探索处理器设计选项。
## 课程资源
- 课程网站:[2020 Fall](https://safari.ethz.ch/architecture/fall2022/doku.php?id=start), [2022 Fall](https://safari.ethz.ch/architecture/fall2022/doku.php?id=start)
- 课程视频官方视频详见课程网站。B站有个[2020年版本搬运](https://www.bilibili.com/video/BV1Vf4y1i7YG/?vd_source=77d47fcb2bac41ab4ad02f265b3273cf)。
- 课程教材:无指定教材,每个 lecture 都有大量文献可供阅读
- 课程作业5 个 Project 大多与内存和cache相关具体内容见[课程网站的lab界面](https://safari.ethz.ch/architecture/fall2022/doku.php?id=labs)
## 资源汇总
国内有高校引入了这门课,因此有需要的同学可以搜索到一些资源。

View File

@ -1,4 +1,4 @@
# Digital Design and Computer Architecture
# ETH ZurichDigital Design and Computer Architecture
## 课程简介
@ -14,8 +14,9 @@
## 课程资源
- 课程网站:<https://safari.ethz.ch/digitaltechnik/spring2020/>
- 课程视频:<https://www.youtube.com/playlist?list=PL5Q2soXY2Zi_FRrloMa2fUYWPGiZUBQo2>
- 课程网站:[2020](https://safari.ethz.ch/digitaltechnik/spring2020/),[2023](https://safari.ethz.ch/digitaltechnik/spring2023/)
- 课程视频:[youtube](https://www.youtube.com/playlist?list=PL5Q2soXY2Zi_FRrloMa2fUYWPGiZUBQo2), [B站2020年版本搬运](https://www.bilibili.com/video/BV1MA411s7qq/?vd_source=77d47fcb2bac41ab4ad02f265b3273cf)
- 课程教材1Patt and Patel, Introduction to Computing Systems
- 课程教材2Harris and Harris, Digital Design and Computer Architecture (MIPS Edition)
中文译本为《数字设计和计算机体系结构(原书第2版)》
- 课程实验9 个实验从零开始设计 MIPS CPU详见课程网站

View File

@ -176,9 +176,10 @@ nav:
- "UCB CS169: software engineering": "软件工程/CS169.md"
- 体系结构:
- "Coursera: Nand2Tetris": "体系结构/N2T.md"
- "Digital Design and Computer Architecture": "体系结构/DDCA.md"
- "UCB CS61C: Great Ideas in Computer Architecture": "体系结构/CS61C.md"
- "CMU 15-213: CSAPP": "体系结构/CSAPP.md"
- "ETHz: Digital Design and Computer Architecture": "体系结构/DDCA.md"
- "ETHz: Computer Architecture": "体系结构/CA.md"
- 操作系统:
- "MIT 6.S081: Operating System Engineering": "操作系统/MIT6.S081.md"
- "UCB CS162: Operating System": "操作系统/CS162.md"