1 / 74

Computers

Computers . Hardware. Acknowledgments. Thanks to the following web site and people for the materials and images used in this presentation:. Wikipedia Prof. Patrice Koehl Sean Davis Nick Puketza http://microsoft.toddverbeek.com http://www.webopedia.com http://www.engin.umd.umich.edu/

jbauer
Download Presentation

Computers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computers Hardware

  2. Acknowledgments Thanks to the following web site and people for the materials and images used in this presentation: • Wikipedia • Prof. Patrice Koehl • Sean Davis • Nick Puketza • http://microsoft.toddverbeek.com • http://www.webopedia.com • http://www.engin.umd.umich.edu/ • http://www.dell.com • http://www.intel.com • http://www.apple.com • http://www.ibm.com • http://homepages.feis.herts.ac.uk/~msc_ice/unit2/ • http://www.howstuffworks.com

  3. Computer Layers Hardware BIOS Operating System Applications

  4. Computer Layers Hardware BIOS Operating System Applications

  5. Computers • What different types of computers are there?

  6. Computers • Laptop, desktop, workstation, • Tablet PC, netbooks, chromebook, etc. • Mainframe • Supercomputer • Server farm and data center (cloud computing)

  7. Looking inside a computer… Computers come in different shapes and sizes, from small laptops (notebooks), desktops to mainframe computers. They all share however the same internal architecture!

  8. IBM Blue Gene Supercomputer

  9. Data Center

  10. Computer: basic scheme Input devices Output devices CPU Storage

  11. The motherboard: backbone of the computer Power supply connector Slot for memory: RAM Hard drive connectors Slot for CPU Input/Output: Keyboard, Mouse,… Extension cards: Video, sound, internet…

  12. Hardware communication: buses Cache CPU (33 to 1333 MHz) Backside bus (speed of processor) (66 MHz) (33 to 1333 MHz) ISA devices ISA bus (33 or 66 MHz) (8.3 MHz) (up to 300 MHz)

  13. Hardware communication: buses The memory bus: a 16 bit bus CPU RAM • Communication between the CPU and the RAM is defined by: • the CPU speed • The RAM speed • The number of bits transferred per cycle Other buses: USB, Firewire, PCI Express,…

  14. CPU

  15. The Central Process Unit (CPU): The “brain” of the computer CPUs are getting smaller, and can include more than one “core” (or processors). CPUs get hot, as their internal components dissipate heat:it is important to add a heat sink and fans to keep them cool.

  16. CPU • Transistors • The integrated circuit (IC) allowed a large number of transistors to be manufactured on a single semiconductor-based die, or "chip." • VLSI (very large scale IC) • Also known as microprocessor, microcontroller, etc. • It starts from the beach....

  17. 800x magnification of an early chip

  18. Moore’s Law • The empirical observation that the transistor density of integrated circuits, with respect to minimum component cost, doubles every 24 months. • attributed to Gordon E. Moore, a co-founder of Intel. • Doubling is very powerful.

  19. A few numbers

  20. CPU speed • 1 hertz = 1 "cycle" per second • A typical watch operates at 1 Hertz • (one "clock tick" per second) • Intel Pentium D: 3.20 GigaHertz (GHZ) • 3.2 billion cycles per second

  21. CPU • ALU (Arithmetic logic unit) • Control Unit • Register • Cache • Connected to memory through North Bridge. • Instructions are stored in machine language as binary number.

  22. The Fetch/Execute Cycle A machine cycles through a series of operations, performing an instruction on each round • Fetch/execute cycle is a five-step cycle: • Instruction Fetch (IF) • Instruction Decode (ID) • Data Fetch (DF) • Instruction Execution (EX) • Result Return (RR) Acknowledgement: Lawrence Snyder, “fluency with information technology”, for following slides

  23. Control Unit • Hardware implementation of the Fetch/Execute Cycle • Its circuitry fetches an instruction from memory and performs other operations of the cycle on it • A typical instruction might have the form ADD 2000, 2080, 4000 • This instruction asks that the numbers stored in locations 2000 and 2080 be added together, and the result stored in location 4000 • Data Fetch step must get these two values and after they are added, Result Return step will store the answer in location 4000

  24. Instruction Interpretation • Process of executing a program • Computer is interpreting our commands, but in its own language • Before the F/E Cycle begins, some of the memory locations and the PC are visible in the control unit

  25. Instruction Interpretation (cont'd) • Execution begins by moving instruction at the address given by the PC from memory to control unit

  26. Instruction Interpretation (cont'd) • Bits of instruction are placed into the decoder circuit of the CU • Once instruction is fetched, the PC can be readied for fetching the next instruction

  27. Instruction Interpretation (cont'd) • In Instruction Decode step, ALU is set up for the operation • Decoder will find the memory address of the instruction's data (source operands) • Most instructions operate on two data values stored in memory (like ADD), so most instructions have addresses for two source operands • These addresses are passed to the circuit that fetches them from memory during the next step, Data Fetch • Decoder finds destination address for the Result Return step, and places it in RR circuit • Decoder determines what operation the ALU will perform, and sets it up appropriately

  28. Instruction Execution • Instruction Execution: The actual computation is performed. For ADD instruction, the addition circuit adds the two source operands together to produce their sum

  29. Instruction • Result Return: result of execution is returned to the memory location specified by the destination address. • Once the result is returned, the cycle begins again.

  30. Many, Many Simple Operations • Computers can only perform about 100 different instructions • About 20 different kinds of operations (different instructions are needed for adding bytes, words, decimal numbers, etc.) • Everything computers do must be reduced to some combination of these primitive, hardwired instructions

  31. Examples of Other Instructions • Besides ADD, MULT (multiply) and DIV (divide), other instructions include: • Shift the bits of a word to the left or right, filling the emptied places with zeros and throwing away bits that fall off the end • Compute logical AND (test if pairs of bits are both true, and logical OR, which tests if at least one of two bits is true • Test if a bit is zero or non-zero, and jump to new set of instructions based on outcome • Move information around in memory • Sense signals from input/output devices • CISC vs. RISC

  32. Cycling the F/E Cycle • Computers get their impressive capabilities by executing many of these simple instructions per second • The Computer Clock: Determines rate of F/E Cycle • Measured in megahertz, or millions of cycles per second

  33. CPU: Instruction Execution Engines • What computers can do • Deterministically perform or execute instructions to process information • The computer must have instructions to follow • What computers can't do • Have no imagination or creativity • Have no intuition • Have no sense of irony, subtlety, proportion, decorum, or humor • Are not vindictive or cruel • Are not purposeful • Have no free will • Do not get mad even if one asks the same thing over and over, Acknowledgement: Lawrence Snyder, “fluency with information technology”

  34. How Important is Clock Speed? • Modern computers try to start an instruction on each clock tick • Pass off finishing instruction to other circuitry • Five instructions can be in process at the same time • Does a 1 GHz clock really execute a billion instructions per second? • Not a precise measurement. Computer may not be able to start an instruction on each tick, but may sometimes be able to start more than one instruction at a time

  35. Multi-core • The use of multiple CPUs in the same computer • Dual-core, Quad-core, multi-core • Benefits: • Challenges:

  36. Memory & Storage

  37. Memory and Storage

  38. Memory • Hierarchical structure • CPU <-> Cache <--> Ram <--> virtual memory/hard-disk

  39. Hardware communication: buses Cache CPU (33 to 1333 MHz) Backside bus (speed of processor) (66 MHz) (33 to 1333 MHz) ISA devices ISA bus (33 or 66 MHz) (8.3 MHz) (up to 300 MHz)

  40. RAM • RAM: Random access memory (RAM) is the best known form of computer memory. RAM is considered "random access" because you can access any memory cell directly if you know the row and column that intersect at that cell • Capacitors • Word: cells of memory (one byte or multiple bytes) • Address (grid structure)

  41. Types • SRAM: Static random access memory • DRAM: Dynamic random access memory

  42. Storage Hard drive Floppy disk CD or DVD Tape USB key

  43. Hard Drive (Magnetic disk) • Capacity • Speed, RPM (revolutions per minute) • Format a disk • Defragmentation • Hard disk failure?

More Related