Add 2 course

This commit is contained in:
TephrocactusMYC 2023-06-14 01:41:26 +08:00
parent e4c3efd2d3
commit f04159062e
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,29 @@
# ETH: Computer Architecture 227-2210-00L
## 课程简介
- 所属大学:苏黎世联邦理工大学
- 先修要求:数字技术(数字逻辑电路)
- 编程语言C/C++少部分verilog
- 课程难度:🌟🌟🌟🌟
- 预计学时70 小时 +
讲解计算机体系结构,授课教师是 Onur Mutlu 教授。课程目标是学习如何为类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实现以此加强对理论课程的理解。同时还将使用C语言开发一个周期精确的处理器模拟器并使用该模拟器探索处理器设计选项。
## 课程资源
- 课程网站:[Computer Architecture Fall 2022 (227-2210-00L)](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

@ -0,0 +1,24 @@
# ETH: Digital Design and Computer Architecture 252-0028-00L
## 课程简介
- 所属大学:苏黎世联邦理工大学
- 先修要求:无
- 编程语言verilog
- 课程难度:🌟🌟🌟
- 预计学时40 小时 +
在介绍另一门ETH的体系结构课的时候发现的这个课程看了看感觉很有趣因此也放在这里。当然无论我本人还是同学都没有上过因此无法给出更详细的介绍只能贴上官网介绍了
>The class provides a first introduction to the design of digital circuits and computer architecture. It covers technical foundations of how a computing platform is designed from the bottom up. It introduces various execution paradigms, hardware description languages, and principles in digital design and computer architecture. The focus is on fundamental techniques employed in the design of modern microprocessors and their hardware/software interface.
> 翻译:本课程是数字电路设计和计算机体系结构的入门课程,涵盖了计算平台从底层设计的技术基础。介绍了各种执行范例、硬件描述语言以及数字设计和计算机体系结构的原则。重点介绍了现代微处理器设计中采用的基本技术及其硬件/软件接口。
这门课的教材是《Digital Design and Computer Architecture》作者是David Money Harris和Sarah L. Harris。该书涉及的内容通俗易懂被部分读者形容为硬科普很适合用来入门。同时作者作者善于用鲜活的比喻解释乏味的概念和习题并提供了扩展阅读列表。很适合与课程配套使用。本书有中文翻译版本由机械工业出版社出版没错大黑砖然而据说翻译质量有待提高。以下附上中文版简介来自[豆瓣](https://book.douban.com/subject/26824111/)
>《数字设计和计算机体系结构(原书第2版)》采用一种独特的现代数字设计方法先介绍数字逻辑门接着讲述组合电路和时序电路的设计并以这些基本的数字逻辑设计概念为基础重点介绍如何设计实际的MIPS处理器。另外在全书的实例中运用SystemVerilog和VHDL展示基于CAD的电路设计方法和技术。通过《数字设计和计算机体系结构(原书第2版)》,读者能够构建自己的微处理器,并能够自顶向下地理解微处理器的工作原理。
## 课程资源
- 课程网站:[Digital Design and Computer Architecture Spring 2023 (252-0028-00L)](https://safari.ethz.ch/digitaltechnik/spring2023/doku.php?id=start)
- 课程视频官方视频详见课程网站。B站有个[2020年版本搬运](https://www.bilibili.com/video/BV1MA411s7qq/?vd_source=77d47fcb2bac41ab4ad02f265b3273cf)。
- 课程教材:[Digital Design and Computer Architecture](https://www.sciencedirect.com/book/9780123944245/digital-design-and-computer-architecture)
- 课程作业9 个 Project 二人一组小组作业。FPGA、Verilog编程。好像最后需要上 Basys 3 开发板,具体内容见[课程网站的lab界面](https://safari.ethz.ch/digitaltechnik/spring2023/doku.php?id=labs)