Syllabus and general information for MCS-284: Computer Organization (Fall 2008)

Overview

MCS-284 will cover the architecture and organization of computer hardware. We will look at the MIPS architecture as a representative modern RISC architecture and do some assembly language programming for that architecture. We'll see how numbers are represented within a computer and how arithmetic operations are performed. With a high-level overview of digital logic design to support us, we'll look at how the datapaths and control circuits of processors are designed, and in particular we'll look in some depth at pipelined processor design, which is the key organizational principle at work in most present-day processors. We'll examine the use of memory hierarchy (cache memory and virtual memory) to provide the illusion of a large fast memory from the reality of limited fast memory plus a larger but slower memory. We'll look at input/output devices and buses, networking, and parallel computers. Throughout the course there will be an emphasis on the quantitative performance characteristics of computer systems; we'll look at the influence of architecture and organization on performance, and take an introductory look at the empirical and analytical tools appropriate to the study of performance. Performance measurement will be one of the main themes reinforced through the lab assignments; the other will be assembly language programming.

Office hours

I will be available in my office (OHS 303) from 12:30-1:20 on Mondays, Tuesdays, Thursdays, and Fridays, as well as by appointment. Or try your luck: just stop by and see whether my door is open. You may send me electronic mail at max@gustavus.edu or call me at extension 7466. I'll try to put any updates to my office hours on my web page, so check there if in doubt. (I already know that I will not hold office hours on September 8th, October 7th, and December 1st.)

World Wide Web

All course materials will be available through my World Wide Web page. The URL for this course is http://gustavus.edu/+max/courses/F2008/MCS-284/. After this syllabus I will give hardcopy handouts only to those students who want them.

Text

Our text will be the third edition of Computer Organization and Design: The Hardware/Software Interface by David A. Patterson and John L. Hennessy, published by Morgan Kaufmann. Either the revised printing or the plain third edition is acceptable.

Labs

Lab days, when we will meet in OHS 326, are marked in the syllabus. Lab 0 will actually be a special one-day demonstration experience not requiring a lab report; only labs 1 through 4 will be “real labs” with reports.

Attendance is expected for all lab days. (If you turn in a lab report early, you are excused from the remaining days devoted to that lab.) I will excuse up to two absences per student, for any reason. Use yours wisely. If you exceed this allowance, I may reduce your course grade by one letter grade.

Homework assignment policy

I will assign a collection of homework problems for each chapter. You may turn in any individual homework problem whenever you think you have it solved. I will return it to you as quickly as I can, but normally with only an indication of whether it is acceptable or needs more work. The reason why I won't write much on the work I turn back to you is because I would like to talk with you face-to-face. If a problem needs more work, you should treat that as an invitation to come talk with me about it. Once you've done the additional work, you may turn the problem in again, attached to (or clearly marked on) the original. In fact, you may turn each problem in as many times as you like, until it is marked as acceptable. Your grade for the homework portion of the course will be based on the fraction of homework problems that you eventually did acceptably.

The final deadline for rewrites of homework problems is 10:30am on October 10th for chapters 1-4 and appendix B, 10:30am on November 7th for chapters 5 and 6, and 10:30am on December 12th for chapters 7-9.

Unless I indicate that a particular problem must be done individually, you may work on any problem in a group of two or three students. One copy of the solution produced by the team should be turned in, with all team members' names on it. Write “we all contributed fairly to this solution” and have all team members sign under that statement.

Tests

There will be two intra-term tests as shown on the syllabus below and a final exam as scheduled by the registrar. If you have a conflict with a testing time, please contact me as soon as possible to make an alternative arrangement.

Exams will be closed-book and mostly closed-notes. You may, however, use a single 8 1/2 by 11 sheet of paper with hand-written notes for reference. (Both sides of the sheet are OK.)

Honor

Students are encouraged to discuss the course, including issues raised by the assignments. However, the solutions to assignments should be individual original work unless otherwise specified. If an assignment makes you realize you don't understand the material, ask a fellow student a question designed to improve your understanding, not one designed to get the assignment done. To do otherwise is to cheat yourself out of understanding, as well as to be intolerably dishonorable.

Any substantive contribution to your solution by another person or taken from a publication should be properly acknowledged in writing. Failure to do so is plagiarism and will necessitate disciplinary action.

The same standards regarding plagiarism apply to team projects as to the work of individuals, except that the author is now the entire team rather than an individual. Anything taken from a source outside the team should be be properly cited.

One additional issue that arises from the team authorship of project reports is that all team members must stand behind all reports bearing their names. All team members have quality assurance responsibility for the entire project. If there is irreconcilable disagreement within the team it is necessary to indicate as much in the report; this can be in the form of a “minority opinion” or “dissenting opinion” section where appropriate.

You are expected to be familiar with the college academic honesty honor code policy and to comply with that policy. If you have any questions about it, please ask.

Late lab assignments

All lab assignments are due at the beginning of class on the day indicated. Late assignments will be penalized by one “grade notch” (such as A to A- or A- to B+) for each weekday late or fraction thereof. However, no late assignments will be accepted after graded assignments are handed back.

If you are too sick to complete an assignment on time, you will not be penalized. Simply write “late due to illness” at the top of the assignment, sign your name and hand it in. Other circumstances will be evaluated on a case-by-case basis.

Grade changes

Please point out any arithmetic or clerical error I make in grading, and I will gladly fix it. You may also request reconsideration if I have been especially unjust.

Grading

The course components will contribute to your grade in the following proportion: However, I reserve the right to subjectively adjust your final grade. Please see me if you have any question how you stand. Class participation is not graded; however, it allows you to find and repair the gaps in your understanding before doing the assignments, and thus can dramatically improve your grade. You are responsible for all course material, whether or not you are present when it was covered or distributed.

Style guidelines

All assignments should be readily readable, and should not presuppose that I already know what you are trying to say. Use full English sentences where appropriate (namely almost everywhere) and clear diagrams, programs, etc. Remember that your goal is to communicate clearly, and that the appearance of these technical items plays a role in this communication process. Be sure your assignments are always stapled together and that your name is always on them.

Accessibility

If you have a learning, psychological, or physical disability for which a reasonable accommodation can be made, I would be happy to refer you to the college's disability services coordinator and to cooperate in the accommodation process. It is generally best if this can be done as soon as possible.

Syllabus

DateReadingTopicDue
9/2 Introduction
9/3 1Computer abstractions and technology
9/4 2.1-2.6Instructions
9/5 Lab 0: Under the hood

9/8 No class
9/9 2.7-2.8Procedures and strings in assembly
9/10 2.9-2.11More on assembly programming
9/11 A.1-A.6,A.9Assembly programming tools
9/12 2.13,2.15Assembly programming examples

9/15 Lab 1: Elementary assembly programming
9/16 Lab 1 (continued)
9/17 Lab 1 (continued)
9/18 2.16-2.18Yet more on assembly language
9/19 3.1-3.3Two's complement, addition, and subtractionLab 1

9/22 Lab 2: More advanced assembly programming
9/23 3.4Multiplication
9/24 Lab 2 (continued)
9/25 3.6Floating point arithmetic
9/26 Binary representations and the Chinese connection

9/29 B.1-B.3Combinational Logic
9/30Lab 2 (continued)
10/1 B.7-B.11Sequential logic
10/2 More on Sequential logic
10/3 4Performance

10/6 EPA summaryEnergy and performance
10/7 No class (attend Nobel Conference)
10/8 No class (attend Nobel Conference)
10/9Lab 2 (continued)
10/10Review; catch-upHW rewrites (1-4, B)

10/13Intra-term test 1
10/145.1-5.3A simple datapath
10/15Lab 2 (continued)
10/165.4-p.314A single-cycle processor
10/175.4More on the single-cycle processorLab 2

10/20No class (reading day)
10/21No class (reading day)
10/225.5A multiple-cycle processor
10/23More on the multiple-cycle processor
10/245.6Exceptions

10/276.1Pipelining
10/286.2A pipelined datapth
10/296.3Pipelined control
10/306.4Forwarding
10/31 6.5Stalls

11/3 6.6Branches
11/4 Lab 3: Processor performance
11/5 6.8-6.12Superscalar and advanced pipelining
11/6 Lab 3 (continued)
11/7 Review; catch-upHW rewrites (5-6)

11/10 Intra-term test 2
11/117.1-7.2Caches
11/127.3Cache performance
11/13Lab 3 (continued)
11/147.4Virtual memory

11/17Lab 3 (continued)
11/187.5-7.8Memory hierarchies
11/19No class
11/208.1-8.2Disk storage
11/21Lab 4: Memory system performanceLab 3

11/24Lab 4 (continued)
11/25Lab 4 (continued)
11/26No class (Thanksgiving)
11/27No class (Thanksgiving)
11/28No class (Thanksgiving)

12/1No class
12/2 Lab 4 (continued)
12/38.3Networks
12/4 More on networks
12/5 8.4BusesLab 4

12/88.5Interfacing input/output
12/99.1-9.3Bus-based MIMD architectures
12/109.4-9.6Network-based MIMD architectures
12/119.7-9.10More on multiprocessors
12/12Review; catch-up; evaluationHW rewrites (7-9)

Course web site: http://gustavus.edu/+max/courses/F2008/MCS-284/
Instructor: Max Hailperin <max@gustavus.edu>