Computer Architecture

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 403

flashcard set

Earn XP

Description and Tags

404 Terms

1
Register File
A state element that consists of a set of registers that can be read and written by supplying a register number to be accessed.
New cards
2


New cards
3
provides 1024 scalar 32-bit registers for up to 64 threads.

New cards
4
machine language
The language made up of binary-coded instructions that is used directly by the computer
New cards
5
system software
The set of programs that enables a computer's hardware devices and application software to work together; it includes the operating system and utility programs.
New cards
6
operating system
(computer science) software that controls the execution of computer programs and may provide various services
New cards
7
Assembly Language
Programming language that has the same structure and set of commands as machine languages but allows programmers to use symbolic representations of numeric machine code.
New cards
8
IBM 360/91
Introduced many new concepts, including dynamic detection of memory hazards, generalized forwarding, and reservation stations. Tomasulo's algorithm
New cards
9


New cards
10
The internal organization of the 360/91 shares many features with the Pentium III and Pentium 4, as well as with several other microprocessors. One major difference was that there was no branch prediction in the 360/91 and hence no speculation. Another major difference was that there was no commit unit, so once the instructions finished execution, they updated the registers.

New cards
11
Dynamic Random Access Memory (DRAM)
Memory built as an integrated circuit; it provides random access to any location. Access times are 50 nanoseconds and cost per gigabyte in 2012 was $5 to $10.
New cards
12


New cards
13
Multiple DRAMs are used together to contain the instructions and data of a program. In contrast to sequential access memories, such as magnetic tapes, the RAM portion of the term DRAM means that memory accesses take basically the same amount of time no matter what portion of the memory is read.

New cards
14


New cards
15
Modern DRAMS consist of rows in each bank

New cards
16
frame buffering
A portion of RAM containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.
New cards
17


New cards
18
The image to be represented onscreen is stored in the frame buffer, and the bit pattern per pixel is read out to the graphics display at the refresh rate. The animation below shows a frame buffer with a simplified design of just 4 bits per pixel.

New cards
19
Datapath
The component of the processor that performs arithmetic operations
New cards
20
Control
The component of the processor that commands the datapath, memory, and I/O devices according to the instructions of the program.
New cards
21
Integrated circuit
Also called a chip. A device combining dozens to millions of transistors.
New cards
22
Central processor unit (CPU)
Also called processor. The active part of the computer, which contains the datapath and control and which adds numbers, tests numbers, signals I/O devices to activate, and so on.
New cards
23
Static random access memory (SRAM)
Also memory built as an integrated circuit, but faster and less dense than DRAM.
New cards
24
Instruction set architecture
Also called architecture. An abstract interface between the hardware and the lowest-level software that encompasses all the information necessary to write a machine language program that will run correctly, including instructions, registers, memory access, I/O, and so on.
New cards
25
Application binary interface (ABI)
The user portion of the instruction set plus the operating system interfaces used by application programmers. It defines a standard for binary portability across computers.
New cards
26
Volatile memory
Storage, such as DRAM, that retains data only if it is receiving power.
New cards
27
Nonvolatile Memory
A form of memory that retains data even in the absence of a power source and that is used to store programs between runs. A DVD disk is nonvolatile.
New cards
28
Magnetic disk
Also called hard disk. A form of nonvolatile secondary memory composed of rotating platters coated with a magnetic recording material. Because they are rotating mechanical devices, access times are about 5 to 20 milliseconds and cost per gigabyte in 2012 was $0.05 to $0.10
New cards
29
Main memory
Also called primary memory. Memory used to hold programs while they are running; typically consists of DRAM in today's computers.
New cards
30
Secondary memory
Nonvolatile memory used to store programs and data between runs; typically consists of flash memory in PMDs and magnetic disks in servers.
New cards
31
Flash memory
A nonvolatile semiconductor memory. It is cheaper and slower than DRAM but more expensive per bit and faster than magnetic disks. Access times are about 5 to 50 microseconds and cost per gigabyte in 2012 was $0.75 to $1.00.
New cards
32
Single Instruction Single Data (SISD)
A uniprocessor
New cards
33
Multiple Instruction Multiple Data (MIMD)
A multiprocessor.
New cards
34
Single Program, Multiple Data Streams (SPMD)
The conventional MIMD programming model, where a single program runs across all processors.
New cards
35
Single Instruction Stream, Multiple Data Streams (SIMD)
The same instruction is applied to many data streams, as in a vector processor.
New cards
36
Data-level parallelism
Parallelism achieved by performing the same operation on independent data
New cards
37
vector-based code

New cards
38
conventional code

New cards
39
LEGv8
assembly instructions
New cards
40
multimedia extensions (MMX)
An expanded set of instructions supported by a processor that provides multimedia-specific functions.
New cards
41
data hazard (pipeline data hazard)
When a planned instruction cannot execute in the proper clock cycle because data that is needed to execute the instruction are not yet available.
New cards
42
forwarding (bypassing)
A method of resolving a data hazard by retrieving the missing data element from internal buffers rather than waiting for it to arrive from programmer-visible registers or memory
New cards
43
Structural hazard
When a planned instruction cannot execute in the proper clock cycle because the hardware does not support the combination of instructions that are set to execute.
New cards
44
Pipelining
Technique that allows the CPU to work on more than one instruction at a time
New cards
45


New cards
46
Formula

New cards
47
total process time \= [longest task * (total load -1)] + total load time

New cards
48
R-format ALU operations
Requires register file and the ALU.
New cards
49
Program Counter (PC)
The register that contains the address of the next instruction to be executed
New cards
50
output
The results of the operation of any system.
New cards
51
temporal locality
The principle stating that if a data location is referenced then it will tend to be referenced again soon.
New cards
52
spatial locality
The principle stating that if a data location is referenced, data locations with nearby addresses will tend to be referenced soon.
New cards
53
Memory hierarchy
A structure that uses multiple levels of memories; as the distance from the processor increases, the size of the memories and the access time both increase.
New cards
54
Block (or line)
The minimum unit of information that can be either present or not present in a cache.
New cards
55
Hit rate
The fraction of memory accesses found in a level of the memory hierarchy.
New cards
56
Miss rate
The fraction of memory accesses not found in a level of the memory hierarchy
New cards
57
miss penalty
The time required to fetch a block into a level of the memory hierarchy from the lower level, including the time to access the block, transmit it from one level to the other, insert it in the level that experienced the miss, and then pass the block to the requestor.
New cards
58
Hit time
The time required to access a level of the memory hierarchy, including the time needed to determine whether the access is a hit or a miss.
New cards
59
Parallelization
consist of dividing a program into separate components that run in parallel on individual computers in the cluster
New cards
60
superscalar
Technique primarily associated with hardware.
New cards
61


New cards
62
Functional units (ALU, Floating Point Unit, Load/Store Unit) are duplicated in the pipeline of a superscalar processor which allows the hardware to issue multiple instructions to each unit simultaneously.

New cards
63
ARM architecture
can support 16-bit
New cards
64
Amdahl's Law
A formula used to find the maximum improvement possible by improving a particular part of a system. In parallel computing, Amdahl's law is mainly used to predict the theoretical maximum speedup for program processing using multiple processors
New cards
65
multiprocessor
A term used to refer to a computer with more than one CPU.
New cards
66
Uniform Memory Access (UMA)
A multiprocessor in which latency to any word in main memory is about the same no matter which processor requests the access.
New cards
67
Non-Uniform Memory Access (NUMA)
Varying system memory access times, because of system hardware.
New cards
68
loop unrolling
A technique to get more performance from loops that access arrays, in which multiple copies of the loop body are made and instructions from different iterations are scheduled together.
New cards
69
Blocking
a failure to retrieve information that is available in memory even though you are trying to produce it
New cards
70


New cards
71
can help reduce cache miss rate

New cards
72
Set Associative Cache
A cache that has a fixed number of locations (at least two) where each block can be placed.
New cards
73
RAID 0 (Disk Striping)
Disk Striping. Disk striping requires at least two drives. It does not provide redundancy to data. If any one drive fails, all data is lost.
New cards
74
RAID 1 (mirroring)
Two drives are used in unison, and all data is written to both drives, giving you a mirror or extra copy of the data, in the case that one drive fails
New cards
75
RAID 2
Bit-level striping with dedicated Hamming-code parity. OBSOLETE.
New cards
76
RAID 3
Byte-level striping with dedicated parity. OBSOLETE, replaced with RAID 5.
New cards
77
RAID 4
Block-level striping with dedicated parity. Not often used, replaced with RAID 5.
New cards
78
RAID 5
Disk striping with parity. RAID-5 uses three or more disks and provides fault tolerance.
New cards
79
RAID 6
Disk striping with parity. RAID-6 uses four or more disks and provides fault tolerance. It can survive the failure of two drives.
New cards
80
silicon crystal ingot
A rod composed of a silicon crystal that is between 8 and 12 inches in diameter and about 12 to 24 inches long.
New cards
81
wafer
A slice from a silicon ingot no more than 0.1 inches thick, used to create chips.
New cards
82
Instruction Set Architecture (ISA)
Also called architecture. An abstract interface between the hardware and the lowest-level software that encompasses all the information necessary to write a machine language program that will run correctly, including instructions, registers, memory access, I/O, and so on
New cards
83
Application Binary Interface (ABI)
The user portion of the instruction set plus the operating system interfaces used by application programmers. It defines a standard for binary portability across computers.
New cards
84
Transistor
An on/off switch controlled by an electric signal
New cards
85
very large-scale integrated (VLSI) circuit
A device containing hundreds of thousands to millions of transistors.
New cards
86
silicon
A natural element that is a semiconductor
New cards
87


New cards
88
1. Excellent conductors of electricity (using either microscopic copper or aluminum wire)

New cards
89


New cards
90
2. Excellent insulators from electricity (like plastic sheathing or glass)

New cards
91


New cards
92
3. Areas that can conduct or insulate under special conditions (as a switch)

New cards
93
Semiconductor
A substance that can conduct electricity under some conditions
New cards
94
Die
The individual rectangular sections that are cut from a wafer, more informally known as chips.
New cards
95
complementary metal-oxide semiconductor (CMOS)
Dominant technology for integrated circuits
New cards
96
LEGv8
Assembly Language
New cards
97
LEGv8 word
A natural unit of access in a computer, usually a group of 32 bits
New cards
98
LEGv8 doubleword
Another natural unit of access in a computer, usually a group of 64 bits (8 bytes); corresponds to the size of a register in the LEGv8 architecture
New cards
99
LEGv8 register
64 bits wide
New cards
100


New cards
robot