Difference between revisions of "Fall 2014 SPO600 Weekly Schedule"
Chris Tyler (talk | contribs) (Created page with 'Category:Fall 2014 SPO600 {{Chris Tyler Draft}} {{Admon/caution|Winter 2014 Material|This page is currently being adapted from the Winter 2014 SPO600 Weekly Schedule pag…') |
Chris Tyler (talk | contribs) |
||
Line 14: | Line 14: | ||
!Week!!Week of...!!Tuesday - Class!!Friday - ALC/Lab!!Deliverables | !Week!!Week of...!!Tuesday - Class!!Friday - ALC/Lab!!Deliverables | ||
|- | |- | ||
− | |1|| | + | |1||Sept 1||[[#Tuesday (Jan 7)|Introduction to Software Porting, Portability, Benchmarking, and Optimization]]||[[#Friday (Jan 10)|How is Code Accepted? - Analyze code submissions in two separate open source projects]]||[[#Week 1 Deliverables|Blog a commentary on code reviews in two communities]] (Lab 1) |
|- | |- | ||
− | |2|| | + | |2||Sept 8||[[#Tuesday (Jan 14)|Computer Architecture Overview]]||[[#Friday (Jan 17)|Hello World - Compile a basic C program and analyze the resultant binary]]||[[#Week 2 Deliverables|Set up a Fedora system and the ARMv8 Foundation Model / Blog on binary analysis (Lab 2)]] |
|- | |- | ||
− | |3|| | + | |3||Sept 15||[[#Tuesday (Jan 21)|Introduction to Assembly Language]]||[[#Friday (Jan 24)|x86_64 and Aarch64 Assembley Language]]||[[#Week 3 Deliverables|Blog about writing in assembly language (Lab 3)]] |
|- | |- | ||
− | |4|| | + | |4||Sept 22||[[#Tuesday (Jan 28)|Lab 3 results, inline assembler, and compiler optimizations]]||[[#Friday (Jan 31)|Analyzing a codebase for assembler and non-portable code]]||[[#Week 3 Deliverables|Blog post about codebase analysis]] |
|- | |- | ||
− | |5|| | + | |5||Sept 29||[[#Tuesday (Feb 4)|Memory Barriers and Atomics]]||[[#Friday (Feb 7)|Potential Project Analysis]]||[[#Week 5 Deliverables|Blog about your selected projects]] |
|- | |- | ||
− | |6|| | + | |6||Oct 6||[[#Tuesday (Feb 11)|Architecture-specific Code for Performance]]||Group hack session - Porting||[[#Week 5 Deliverables|Identify the assembler in your projects and contact your upstream communities.]] |
|- | |- | ||
− | |7|| | + | |7||Oct 13||Portability - Removing platform-specific code||Group hack session - Portability||Remove platform-specific code from your projects |
|-style="background: #f0f0ff" | |-style="background: #f0f0ff" | ||
− | |Study Week|| | + | |Study Week||Oct 20||colspan="3" align="center"|Study Week<br />'''[http://fsoss.ca FSOSS 2014] on Thursday-Friday''' |
|- | |- | ||
− | |8|| | + | |8||Oct 27||Project Work||Project Work||Get code into review |
|- | |- | ||
− | |9|| | + | |9||Nov 3||[[#Tuesday (March 11)|Status Update]]||[[#Friday (March 14)|Foundation Models]]||[[#Week 9 Deliverables|Install and Test With Foundation Model]] |
|- | |- | ||
− | |10|| | + | |10||Nov 10||[[#Tuesday (March 18)|Profiling ]]||Baseline Profiling||[[#Week 10 Deliverables|Post baseline stats for your software]] |
|- | |- | ||
− | |11|| | + | |11||Nov 17||Optimizing Code||Group hack - Profiling and optimizing||Code review update |
|- | |- | ||
− | |12|| | + | |12||Nov 24||Using complier optimizations||Project Work||Code review update |
|- | |- | ||
− | |13|| | + | |13||Dec 1||Final Presentations||(No class - Exams start)||Code accepted upstream |
|-style="background: #f0f0ff" | |-style="background: #f0f0ff" | ||
− | |Exam Week|| | + | |Exam Week||Dec 8||colspan="3" align="center"|Exam Week - No exam in this course! |
|} | |} | ||
Line 49: | Line 49: | ||
!Category!!Percentage!!Evaluation Dates | !Category!!Percentage!!Evaluation Dates | ||
|- | |- | ||
− | |Communication||align="right"|20%|| | + | |Communication||align="right"|20%||September 30, October 31, November 21, December 10 |
|- | |- | ||
− | |Quizzes||align="right"|10%||May be held during any class. A minimum of 5 one-page quizzes will be given. Lowest 3 scores will not be counted. | + | |Quizzes||align="right"|10%||May be held during any class, usually at the start of class. A minimum of 5 one-page quizzes will be given. No make-up/retake option is offered if you miss a quiz. Lowest 3 scores will not be counted. |
|- | |- | ||
|Labs||align="right"|10%||See deliverables column above. | |Labs||align="right"|10%||See deliverables column above. | ||
|- | |- | ||
− | |Project work||align="right"|60%|| | + | |Project work||align="right"|60%||October 10, November 21, December 10 |
|} | |} | ||
Line 103: | Line 103: | ||
# Sign and return the [[Open Source Professional Option Student Agreement]]. | # Sign and return the [[Open Source Professional Option Student Agreement]]. | ||
+ | <!-- | ||
== Week 2 == | == Week 2 == | ||
Line 274: | Line 275: | ||
=== Week 10 Deliverables === | === Week 10 Deliverables === | ||
* Blog your baseline benchmark results | * Blog your baseline benchmark results | ||
+ | --> |
Revision as of 08:00, 9 July 2014
Contents
Summary Table
This is a summary/index table. Please follow the links in each cell for additional detail -- especially for the Deliverables column.
Evaluation
Category | Percentage | Evaluation Dates |
---|---|---|
Communication | 20% | September 30, October 31, November 21, December 10 |
Quizzes | 10% | May be held during any class, usually at the start of class. A minimum of 5 one-page quizzes will be given. No make-up/retake option is offered if you miss a quiz. Lowest 3 scores will not be counted. |
Labs | 10% | See deliverables column above. |
Project work | 60% | October 10, November 21, December 10 |
Week 1
Tuesday (Jan 7)
- Introduction to the Problem
- Most software is written in a high-level language which can be compiled into machine code for a specific architecture. However, there is a lot of existing code that contains some architecture-specific code fragments written in Assembly Language.
- Reasons for writing code in Assembly Langauge include:
- Performance
- Atomic Operations
- Direct access to hardware features, e.g., CPUID registers
- Most of the historical reasons for including assembler are no longer valid. Modern compilers can out-perform most hand-optimized assembly code, atomic operations can be handled by libraries or compiler intrinsics, and most hardware access should be performed through the operating system or appropriate libraries.
- A new architecture has appeared: Aarch64, which is part of ARMv8. This is the first new computer architecture to appear in several years.
- There are over 1400 software packages/modules present in GNU Linux systems which contain architecture-specific assembly language code. Most of these packages cannot be built on Aarch64 systems without modification.
- In this course, you will:
- Select two software packages from a list compiled by Steve Macintyre of Linaro. Each of the packages on this list contains assembly language code which is platform-specific.
- Prepare a fix/patch for the software so that it will run on 64-bit ARM systems (aarch64). This may be done at either of two levels:
- Port - Add additional assembly language code for aarch64 (basic solution).
- Make Portable - Remove architecture-specific code, replacing it with compiler intrinsics or high-level code so that the software will successfully build on multiple platforms.
- Benchmark - Prove that your changes do not cause a performance regression on existing platforms, and that (ideally) it improves performance.
- Upstream your Code - Submitting your code to the upstream (originating) software project so that it can be incorporated into future versions of the software. This will involve going through a code review to ensure that your code is compatible with and acceptable to the upstream community.
- Optional: You can participate in the Linaro Code Porting/Optimization contest. For details, see the YouTube video of Jon "maddog" Hall and Steve Mcintyre at Linaro Connect USA 2013.
- Course details:
- Course resources are linked from the CDOT wiki, starting at http://zenit.senecac.on.ca/wiki/index.php/SPO600 (Quick find: This page will usually be Google's top result for a search on "SPO600").
- Coursework is submitted by blogging.
- Quizzes will be short (1 page) and will be held without announcement at any time. Your lowest three quiz scores will not be counted, so do not worry if you miss one or two.
- Course marks:
- 60% - Project Deliverables
- 20% - Communication (Blog and Wiki writing)
- 20% - Labs and Quizzes
- Friday classes will be held in an "Active Learning Classroom". You are encouraged to bring your own laptop to these classes.
- For more course information, refer to the SPO600 Weekly Schedule (this page), the Course Outline, and SPO600 Course Policies.
Friday (Jan 10)
- SPO600 Code Review Lab
- Start thinking about how you want to set up your SPO600 Software
Week 1 Deliverables
- Set up a blog and add it to Planet CDOT.
- Blog your conclusion to the SPO600 Code Review Lab.
- Add yourself to the Winter 2014 SPO600 Participants page (leave the projects columns blank).
- Sign and return the Open Source Professional Option Student Agreement.