计算机组成原理第一章笔记---绪论

本文内容整理自西安交通大学软件学院李晨老师的课件,仅供学习使用,请勿转载

计算机组成原理系列笔记汇总:计算机组成原理笔记及思维导图汇总附复习建议_Qlz的博客-CSDN博客

文章目录

本章思维导图

Introduction思维导图

Overview

Computer architecture(计算机架构)

定义1

design of the abstraction layers that allow us to implement information processing applications efficiently using available manufacturing technologies.

抽象层的设计,使我们能够使用可用的制造技术有效地实现信息处理应用程序

定义2

attributes visible to a programmer

  • These attributes have a direct impact on the logical execution of a program
  • Conceptual structure and function characteristic

指令集,字长,I/O机制,寻址方式

Computer Organization(计算机组成)

定义1

The operational units (components) and their interconnection that realize the architectural specifications

实现建筑规范的操作单元(零部件)及其互连

定义2

Fundamental attributes visible to a system designer

  • An implementation of the architecture

控制信号,接口,存储技术,总线技术

Computer Implementations(计算机实现)

定义1

Physical implementations of computer components in organization(在组织中的计算机组件的物理实现)

定义2

The hardware out of which we make computer systems(我们用来制造计算机系统的硬件)

集成电路,印刷版电路

架构和组成的对比

Computer architecture refers to logical design of a computer; while computer organization is implementation of this logical design

计算机架构是逻辑设计,计算机组成是实现这个逻辑设计

名词解释

Transparency/Transparent(透明)

For existed things or attributes, from a point of view, they are looked as not existed, this concept is called transparency

对于已存在的事物或属性,从某个角度来看,它们被视为不存在,这个概念被称为透明度

Architectural attributes

{instruction set,word length,I/O mechanism,addressing,etc}

Organizational attributes

{control signal,interface,memory technology,bus technology,… hardware details transparent to programmer}

Implement attributes

{Integrated Circuits (ICs), Printed Circuits (PC) boards, Power Supplies, Chassis, Connectors and Cables,etc}

Series Computers(系列机)

computers with the same architecture and different organization(有着相同架构不同组成的一系列计算机)

(Software) compatibility/compatible(软件兼容性)

The software can operate in all computers with the same architecture.(软件可以再同一架构的计算机下运行)

Upward compatibility(向上兼容性)

program for low level computer can run over high level computer without modification 低级计算机的程序可以在高级计算机上运行而无需修改

Backward compatibility(向后兼容性)

program for current computer can run over future computer without modification 现在的程序可以运行在以后的机器上而无需修改

Structure and Function

How to describe a computer?

  • Hierarchical system(分层系统)
  • Set of interrelated subsystems(相互关联的子系统集)

Structure

the way in which components relate to each other in certain level

组件在特定层次上相互关联的方式

Function

the operation of individual components as part of the structure

作为结构的一部分的单个组件的操作

Top-down

approach to describe

描述的方式

computer functions

  • Data processing
  • Data storage
  • Data movement
  • Control

Structure - Top Level

image-20210922164400904.png

image-20210922164436741.png

image-20210922164451011.png

Vocabulary

  • Central Processing Unit:中央处理单元/CPU

  • Main memory:主存

  • I/O subsystem 输入/输出子系统

  • Interconnection:互连

  • Component:部件/组件

  • Arithmetic and logic unit:算术逻辑单元

  • Register:寄存器

  • Single-chip microcomputer:单片机

  • Integrated circuit:集成电路

  • Architecture & organization:组成与系统结构

  • Attribute : 属性

  • Programmer:程序员

  • Instruction set:指令集

  • Addressing memory:可寻址内存

  • Interface:接口

  • Transparency:透明性

  • Peripheral:外设

  • Compatibility:兼容性

  • Reduced instruction set computer:精简指令集计算机/RISC

  • Short-term data storage:短时数据存储

  • Long -term data storage:长时数据存储

  • Processor:处理器

  • Parallel and pipeline :并行与流水

  • Microprogram :微程序

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
基于PyTorch的Embedding和LSTM的自动写诗实验LSTM (Long Short-Term Memory) 是一种特殊的循环神经网络(RNN)架构,用于处理具有长期依赖关系的序列数据。传统的RNN在处理长序列时往往会遇到梯度消失或梯度爆炸的问题,导致无法有效地捕捉长期依赖。LSTM通过引入门控机制(Gating Mechanism)和记忆单元(Memory Cell)来克服这些问题。 以下是LSTM的基本结构和主要组件: 记忆单元(Memory Cell):记忆单元是LSTM的核心,用于存储长期信息。它像一个传送带一样,在整个链上运行,只有一些小的线性交互。信息很容易地在其上保持不变。 输入门(Input Gate):输入门决定了哪些新的信息会被加入到记忆单元中。它由当前时刻的输入和上一时刻的隐藏状态共同决定。 遗忘门(Forget Gate):遗忘门决定了哪些信息会从记忆单元中被丢弃或遗忘。它也由当前时刻的输入和上一时刻的隐藏状态共同决定。 输出门(Output Gate):输出门决定了哪些信息会从记忆单元中输出到当前时刻的隐藏状态中。同样地,它也由当前时刻的输入和上一时刻的隐藏状态共同决定。 LSTM的计算过程可以大致描述为: 通过遗忘门决定从记忆单元中丢弃哪些信息。 通过输入门决定哪些新的信息会被加入到记忆单元中。 更新记忆单元的状态。 通过输出门决定哪些信息会从记忆单元中输出到当前时刻的隐藏状态中。 由于LSTM能够有效地处理长期依赖关系,它在许多序列建模任务中都取得了很好的效果,如语音识别、文本生成、机器翻译、时序预测等。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Hydrion-Qlz

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值