Open main menu

CDOT Wiki β

Changes

Winter 2017 SPO600 Weekly Schedule

45,384 bytes added, 12:17, 21 November 2016
Created page with "Category:Winter 2017 SPO600 <!-- {{Admon/important|It's Alive!|This SPO600 weekly schedule will be updated as the course proceeds - dates and content are subject to c..."
[[Category:Winter 2017 SPO600]]

<!-- {{Admon/important|It's Alive!|This [[SPO600]] weekly schedule will be updated as the course proceeds - dates and content are subject to change. The cells in the summary table will be linked to relevant resources and labs as the course progresses.}} -->
{{Admon/caution|Old Content|This page contains information for a previous version of the course. It will be updated for Winter 2017.}}

* Previous semester: [[Fall 2015 SPO600 Weekly Schedule]].

== Schedule Summary Table ==

This is a summary/index table. Please follow the links in each cell for additional detail which will be added below as the course proceeds -- especially for the ''Deliverables'' column.

{|cellspacing="0" width="100%" cellpadding="5" border="1" style="background: #e0e0ff"
|-
!Week!!Week of...!!width="28%"|Tuesday!!width="28%"|Friday!!width="28%"|Deliverables<br/>(Summary - click for details)
|-
|1||Jan 11||[[#Tuesday (Jan 12)|Introduction to Software Porting, Portability, Benchmarking, and Optimization / How is code accepted into an open source project? (Lab 1)]]||[[#Friday (Jan 15)|Overview of Working with Code and Building Software (Lab 2)]]||[[#Week 1 Deliverables|Set up accounts, and blog your conclusion to Lab 2.]]
|-

|2||Jan 18||[[#Tuesday (Jan 19)|Computer Architecture Overview]]||[[#Friday (Jan 22)|Assembly Lab (Lab 3)]]||[[#Week 2 Deliverables|Blog about the Code Review Lab (Lab 1)]]
|-

|3||Jan 25||[[#Tuesday (Jan 26)|Assembly Lab (Lab 3) - continued]]||[[#Friday (Jan 29)|Compiled C Lab (Lab 4)]]||[[#Week 3 Deliverables|Blog about the Assembly Lab (Lab 3) and Compiled C Lab (Lab 4)]]
|-

|4||Feb 1||[[#Tuesday (Feb 2)|Software Optimization]]||[[#Friday (Feb 5)|Algorithm Selection Lab (Lab 5)]]||[[#Week 4 Deliverables|Blog about the Algorithm Selection Lab (Lab 5).]]
|-

|5||Feb 8|||[[#Tuesday (Feb 9)|Algorithm Selection Lab (Lab 5) Continued]]||[[#Friday (Feb 12)|SIMD and Auto-Vectorization (Lab 6)]]||[[#Week 5 Deliverables|Blog your the Algorithm Selection Lab (Lab 5) and the Auto-Vectorization Lab (Lab 6).]]
|-

|6||Feb 15||[[#Tuesday (Feb 16)|Memory architecture]]||[[#Friday (Feb 19)|Inline Assembler Lab (Lab 7)]]||[[#Week 6 Deliverables|Blog about your Inline Assembler Lab (Lab 7).]]
|-

|7||Feb 22||[[#Tuesday (Feb 23)|Course Presentation Assignment]]||[[#Friday (Feb 26)|Project Startup]]||[[#Week 7 Deliverables|Blog about your selected presentation and project topics.]]

|-style="background: #f0f0ff"
|Study Week||Feb 29||colspan="3" align="center"|Study Week - No classes!
|-

|8||Mar 7||style="background:#f0f0ff" colspan="2" align="center"|Linaro Connect - No classes. Prepare for your presentation and work on your project.||[[#Week 8 Deliverables|Prepare for your presentation and work on your project.]]
|-

|9||Mar 14||[[#Tuesday (Mar 15)|Presentations]]||[[#Friday (Mar 18)|Presentations]]||[[#Week 9 Deliverables|Blog about your Presentation.]]
|-

|10||Mar 22||[[#Tuesday (Mar 23)|Project Stage I Updates]]||style="background:#f0f0ff"|Good Friday - No Classes||[[#Week 10 Deliverables|Blog about your Stage I Update.]]
|-

|11||Mar 28||[[#Tuesday (Mar 29)|Discussion & Hack Session]]||[[#Friday (Apr 1)|Discussion & Hack Session]]||[[#Week 11 Deliverables|Blog about your project work.]]
|-

|12||Apr 4||[[#Tuesday (Apr 5)|Discussion & Hack Session]]||[[#Friday (Apr 8)|Project Stage II Updates]]||[[#Week 12 Deliverables|Blog about your Stage II Update.]]
|-

|13||Apr 11||[[#Tuesday (Apr 12)|Wrap-Up Discussion]]||[[#Friday (Apr 15)|Project Stage III Updates]]||[[#Week 13 Deliverables|Blog about your project, including the Stage III Update, and write a wrap-up post about the course.]]
|-

|-style="background: #f0f0ff"
|Exam Week||Apr 18||colspan="3" align="center"|Exam Week - No exam in this course!
|}

== Evaluation ==
{|cellspacing="0" width="100%" cellpadding="5" border="1" style="background: #e0ffe0"
!Category!!Percentage!!Evaluation Dates
|-
|Communication||align="right"|20%||5% each: End of January, end of February, end of March, end of course.
|-
|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. All labs must be submitted by April 21.
|-
|Project work||align="right"|60%||3 stages: 15% (March 29) / 20% (April 10) / 25% (April 21)
|}

== Week 1 ==

=== Tuesday (Jan 12) ===

==== Introduction to the Problems ====

===== Porting and Portability =====
* Most software is written in a '''high-level language''' which can be compiled into [[Machine Language|machine code]] for a specific computer architecture. In many cases, this code can be compiled for multiple architectures. However, there is a lot of existing code that contains some architecture-specific code fragments written in [[Assembly Language]] (or, in some cases, machine-specific high-level code).
* Reasons for writing code in Assembly Langauge include:
** Performance
** [[Atomic Operation|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|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 [http://www.arm.com/products/processors/instruction-set-architectures/armv8-architecture.php ARMv8]. This is the first new [[Computer Architecture|computer architecture]] to appear in several years (at least, the first mainstream computer architecture).
* At this point, most key open source software (the software typically present in a Linux distribution such as Ubuntu or Fedora, for example) now runs on AArch64. However, it may not run as well as on older architectures (such as x86_64).

===== Benchmarking and Profiling =====
Benchmarking involves testing software performance under controlled conditions so that the performance can be compared to other software, the same software operating on other types of computers, or so that the impact of a change to the software can be gauged.

Profiling is the process of analyzing software performance on finer scale, determining resource usage per program part (typically per function/method). This can identify software bottlenecks and potential targets for optimization.

===== Optimization =====
Optimization is the process of evaluating different ways that software can be written or built and selecting the option that has the best performance tradeoffs.

Optimization may involve substituting software algorithms, altering the sequence of operations, using architecture-specific code, or altering the build process. It is important to ensure that the optimized software produces correct results and does not cause an unacceptable performance regression for other use-cases, system configurations, operating systems, or architectures.

The definition of "performance" varies according to the target system and the operating goals. For example, in some contexts, low memory or storage usage is important; in other cases, fast operation; and in other cases, low CPU utilization or long battery life may be the most important factor. It is often possible to trade off performance in one area for another; using a lookup table, for example, can reduce CPU utilization and improve battery life in some algorithms, in return for increased memory consumption.

Most advanced compilers perform some level of optimization, and the options selected for compilation can have a significant effect on the trade-offs made by the compiler, affecting memory usage, execution speed, executable size, power consumption, and debuggability.

===== Build Process =====

Building software is a complex task that many developers gloss over. The simple act of compiling a program invokes a process with five or more stages, including pre-proccessing, compiling, optimizing, assembling, and linking. However, a complex software system will have hundreds or even thousands of source files, as well as dozens or hundreds of build configuration options, auto configuration scripts (cmake, autotools), build scripts (such as Makefiles) to coordinate the process, test suites, and more.

The build process varies significantly between software packages. Most software distribution projects (including Linux distributions such as Ubuntu and Fedora) use a packaging system that further wraps the build process in a standardized script format, so that different software packages can be built using a consistent process.

In order to get consistent and comparable benchmark results, you need to ensure that the software is being built in a consistent way. Altering the build process is one way of optimizing software.

Note that the build time for a complex package can range up to hours or even days!

==== General Course Information ====

* 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 (see Weekly Schedule for dates):
** 60% - Project Deliverables
** 20% - Communication (Blog and Wiki writing)
** 20% - Labs and Quizzes (10% labs - completed/not completed; 10% for quizzes - lowest 3 scores not counted)
* All classes will be held in an [[Active Learning Classroom]] -- you are encouraged to bring your own laptop to class. If you do not have a laptop, consider signing one out of the Learning Commons for class, or using a smartphone with an HDMI adapter.
* For more course information, refer to the SPO600 Weekly Schedule (this page), the [http://www.senecacollege.ca/ssos/findWithoutSemester/spo600/sict Course Outline], and [[SPO600 Course Policies]].
* Optional: You can participate in the [http://linaro.org Linaro] Code Porting/Optimization contest. For details, see the [http://www.youtube.com/watch?v=Lo1dBB3tke8 YouTube video] of Jon "maddog" Hall and Steve Mcintyre at Linaro Connect USA 2013.

==== Discussion of how open source communities work ====

* Background for the [[SPO600 Code Review Lab|Code Review Lab (Lab 1)]].

=== Friday (Jan 15) ===

* [[Overview of the Build and Release Process]]
*Working with Code
*# Getting Code
*#* In a tarball
*#* From git
*#** Git basics
*#* Working with other version control systems
*# Getting and Installing Build Dependencies
*#* Required tools
*#* Required libraries, headers, and modules
*# Building the Code
*#* Configuration tools (autotools, cmake)
*#* Make
*#* The compiler toolchain
*#** Preprocessor
*#** Compiler
*#** Assembler
*#** Linker
*#* Debug vs. Non-debug/Stripped binaries
*#* Installation Scripts

* Looking at How Distributions Package the Code
** Using fedpkg

* [[SPO600 Code Building Lab|Code Building Lab (Lab 2)]] as homework

=== Week 1 Deliverables ===

# Course setup:
## Set up your [[SPO600 Communication Tools]] - in particular, set up a blog and add it to [http://zenit.senecac.on.ca/~chris.tyler/planet/ Planet CDOT] (via the [[Planet CDOT Feed List]]).
## Add yourself to the [[Winter 2016 SPO600 Participants]] page (leave the projects columns blank).
## Generate a [[SSH#Using_Public_Keys_with_SSH|pair of keys]] for [[SSH]] and email the public key to your professor.
## Sign and return the [[Open Source Professional Option Student Agreement]].
# Complete Labs
## [[SPO600 Code Review Lab|Code Review Lab (Lab 1)]] (Due end of week 2)
## [[SPO600 Code Building Lab|Code Building Lab (Lab 2)]] (Due end of week 1)
# Optional (recommended): [[SPO600 Host Setup|Set up a personal Fedora system]].
# Optional (recommended): Purchase an AArch64 development board (such as a [http://96boards.org 96Boards] HiKey).

== Week 2 ==

=== Tuesday (Jan 19) ===

* [[Computer Architecture]] overview (see also the [[:Category:Computer Architecture|Computer Architecture Category]])

=== Friday (Jan 22) ===

* [[SPO600 Assembler Lab|Assembly language lab]] (lab 3)

=== Week 2 Deliverables ===
* Blog your conclusion to the [[SPO600 Code Review Lab|Code Review Lab]] (Lab 1)

== Week 3 ==

=== Tuesday (Jan 26) ===

* Continue work on the [[SPO600 Assembler Lab|Assembly language lab]] (lab 3)

=== Friday (Jan 29) ===

* [[SPO600 Compiled C Lab|Compiled C lab]] (lab 4)

=== Week 3 Deliverables ===

* Blog about your [[SPO600 Assembler Lab|Assembly language lab]] (lab 3).
* Blog about your [[SPO600 Compiled C Lab|Compiled C lab]] (lab 4) experience and results. Consider the optimizations and transformations that the compiler performed.
* Remember that these posts (as all of your blog posts) will be marked both for communication (clarity, quality of writing (including grammar and spelling), formatting, use of links, completeness) and for content (lab completion and results). Your posts should contain both factual results as well as your reflections on the meaning of those results, the experience of performing the lab, and what you have learned.


'''Reminder:''' Blogs will be marked as they stand at the end of the month (Sunday).

== Week 4 ==

=== Tuesday (Feb 2) ===

Software Optimization
* [[Compiler Optimizations]]
* Algorithm Selection

=== Friday (Feb 5) ===

* [[SPO600 Algorithm Selection Lab|Algorithm Selection Lab]] (Lab 6)

=== Week 4 Deliverables ===

* Blog about your Lab 5 results.

== Week 5 ==

=== Tuesday (Feb 9) ===

* Finish the [[SPO600 Algorithm Selection Lab|Algorithm Selection Lab]]
* Discussion of Benchmarking Challenges
* Introduction to Vector Processing/SIMD

=== Friday (Feb 12) ===

* [[SPO600 Vectorization Lab|Vectorization Lab]] (Lab 6)

==== Week 5 Deliverables ====

* Blog your results for the [[SPO600 Algorithm Selection Lab|Algorithm Selection Lab]] (Lab 5)
* Blog your results for the [[SPO600 Vectorization Lab|Vectorization Lab]] (Lab 6)
* For each of the above, be sure to include links to your code, detailed results, and your reflection on the lab.

== Week 6 ==

=== Tuesday (Feb 16) ===
* Discussion of Memory Architecture

=== Friday (Feb 19) ===
* [[Inline Assembly Language]] -- often used for:
*# Implementing a memory barrier
*# Performing an [[Atomic Operation]]
*# Gaining performance (by accessing processor features not exposed by the high-level language being used (C, C++, ...))
* [[SPO600 Inline Assembler Lab|Inline Assembler Lab]] (Lab 7)

=== Week 6 Deliverables ===
* Blog your Lab 7 results.

== Week 7 ==

=== Tuesday (Feb 23) ===
* Discussion of [[Winter 2016 SPO600 Compiler Options Presentation|Course Presentation]] assignment

=== Friday (Feb 26) ===
* Discussion of the [[Winter 2016 SPO600 Project|Course Project]]

=== Week 7 Deliverables ===
* Blog about your selected Presentation and Project topics.

== Week 8 ==

[http://connect.linaro.org/bkk16/|Linaro Connect] - No classes.

=== Week 8 Deliverables ===

* Prepare for your Presentation
* Work on your Project
* Blog about what you're doing!

== Week 9 ==

=== Tuesday (Mar 14) ===

* [[Winter 2016 SPO600 Compiler Options Presentation|Presentations]]

=== Friday (Mar 18) ===

* [[Winter 2016 SPO600 Compiler Options Presentation|Presentations]]

=== Week 9 Deliverables ===

* Blog about your Presentation, incorporating any discussion or feedback during the presentation.

== Week 10 ==

=== Tuesday (Mar 22) ===

* [[Winter 2016 SPO600 Project|Course Project]] - Stage I Updates

=== Week 10 Deliverables ===

* Blog your Stage I Updates. '''Important!''' - this will be used to assign your Stage I project mark! Include:
** Which software package you are working on
** Your experience building the software "out of the box" on x86_64 and AArch64 platforms
** Baseline results (performance)
** Which area of the software you will be working on and which approach you are going to take to optimizing the software...
**# Improving the Build Instructions (e.g., compiler options), OR
**# Changing the Software (substituting a different algorithm, or refactoring for better compiler optimization e.g., auto-vectorization), OR
**# Adding Platform-Specific code for AArch64

== Week 11 ==

=== Tuesday (Mar 29) ===

* Discussion & Hack Session

=== Thursday (Mar 31) ===

Reminder: '''Special Event:''' [https://www.eventbrite.ca/e/leadership-lunch-with-mike-shaver-engineer-director-for-facebook-tickets-23046621064 Leadership Lunch with Mike Shaver]

=== Friday (Apr 1) ===

* Discussion & Hack Session

=== Week 11 Deliverables ===

* Blog about your project work.


== Week 12 ==

=== Tuesday (Apr 5) ===

* Discussion & Hack Session

=== Friday (Apr 8) ===

* Project Stage II Updates

=== Week 12 Deliverables ===

* Blog your Stage II Project Updates by '''Midnight, Sunday, Apr 10.''' Note that this will be used for your Stage II project mark (20%).

== Week 13 ==

=== Tuesday (Apr 12) ===

* Wrap-Up Discussion

=== Friday (Apr 15) ===

* Stage III Project Updates

=== Week 13 Deliverables ===

* Blog your Stage III Project Updates by Midnight on Thursday, April 21.

* Complete ALL your blogging for this course by Midnight on Thursday, April 21. Make sure that you have included all of the labs, your presentation, and your project work. Remember that there should be at least 1-2 posts per week. Your blogging from April 1-April 21 will be used for your April communication mark.


<!-- == Week 2 ==

=== Tuesday (Sep 15) ===

{{Admon/tip|Bring Your Laptop|Classes are held in a [[Active Learning Classroom]]. If you have a laptop or other device with a VGA or HDMI output (such as a smartphone!) please bring it. You'll need either a local linux environment or an [[SSH]] client -- which is built-in to Linux, Mac, and Chromebook systems, and readily available for Windows, Android, and iOS devices.}}

* [[SPO600 Compiled C Lab|Compiled C Lab (Lab 2)]]
* Sheets from Last Week
** Open Source Student Agreement

=== Friday (Sep 18) ===

* Introductions
* [[Compiler Optimizations]]
* Introduction to the [[Fall 2015 SPO600 Compiler Options Presentation|Compiler Options Presentation]]

=== Week 2 Deliverables ===

* Blog about your [[SPO600 Code Review Lab|Code Review Lab (Lab 1)]] and [[SPO600 Compiled C Lab|Lab 2]] experience and results. For lab 2, consider the optimizations and transformations that the compiler performed. Remember that these posts (as all of your blog posts) will be marked both for communication (clarity, quality of writing (including grammar and spelling), formatting, use of links, completeness) and for content (lab completion and results). Your posts should contain both factual results as well as your reflections on the meaning of those results, the experience of performing the lab, and what you have learned.

== Week 3 ==

This week [[User:Chris Tyler|your professor]] is at [http://connect.linaro.org/sfo15/ Linaro Connect], an engineering conference run by [http://www.linaro.org Linaro] - a distributed not-for-profit collaborative technology company focused on Linux on ARM.

* [[Fall 2015 SPO600 Compiler Options Presentation|Select and prepare to teach the class about two compiler options]].

=== Week 3 Deliverables ===
* Be prepared to give your [[Fall 2015 SPO600 Compiler Options Presentation|presentation]] on Tuesday of next week (September 29).

== Week 4 ==

=== Tuesday (Sep 29) ===
* Presentations

=== Friday (Oct 2) ===
* Presentations
* Introduction to ARM64 hardware
* [[SPO600 Algorithm Selection Lab|Algorithm Selection Lab (Lab 3)]]

=== Week 4 Deliverables ===
* Blog your [[Fall 2015 SPO600 Compiler Options Presentation|presentation]], incorporating any feedback and Q&A input that was given during/after the presentation in class.

== Week 5 ==

=== Tuesday (Oct 6) ===
* Class discussion/hacking on [[SPO600 Algorithm Selection Lab|Lab 3]].

=== Friday (Oct 9) ===
* More on Lab 3
* Discussion of Benchmarking

=== Week 5 Deliverables ===
* Blog your [[SPO600 Algorithm Selection Lab|Lab 3]] results.

== Week 6 ==

=== Tuesday (Oct 13) ===
* Discussion of benchmarking
** Control of variables
*** Competition for system resources
*** Repeatability
* Planning for a Compiler Options Test Framework

=== Friday (Oct 16) ===
* Compiler Options Framework
** Divide up tasks
** Start development

=== Week 6 Deliverables ===
* Blog your recommendations for the test framework design.


== Week 7 ==

=== Tuesday (Oct 20) ===
* Build the [[SPO600 Framework Project|Compiler Options Test Framework]]

=== Friday (Oct 23) ===
* Project selection
** Your task over reading week: Become an expert in building your selected software, and then make it work with the [[SPO600 Framework Project|Compiler Options Test Framework]]

=== Week 7 Deliverables ===
* Blog about the compiler options framework, and your work on that project.
* Blog about your selected project.

== Week 8 ==

=== Tuesday (Nov 3) ===
* No class scheduled - your [[User:Chris Tyler|prof]] is in Whitehorse, YK at an NSERC workshop.
* Please work on your [[Fall 2015 SPO600 Course Project|project]], and be ready to present on Friday.

=== Friday (Nov 6) ===
* Present your Stage I results for your [[Fall 2015 SPO600 Course Project|project]].

=== Week 8 Deliverables ===

* Blog about your [[Fall 2015 SPO600 Course Project|stage I project results]]. This will be used to assign the first marks for your project.

== Week 9 ==

=== Tuesday (Nov 10) ===

* [[Computer Architecture]] overview (see also the [[:Category:Computer Architecture|Computer Architecture Category]])

=== Friday (Nov 13) ===

* [[SPO600 Assembler Lab|Assembly language lab]] (lab 4)

=== Week 9 Deliverables ===

* Blog about your project progress (2+ posts per week).
* Blog the [[SPO600 Assembler Lab|Assembly language lab]] -- include your results, a link to your source code, and your reflections on the experience.


== Week 10 ==

=== Tuesday (Nov 17) ===
* Discussion & Hack Session
** [[SPO600 Assembler Lab|Assembly language lab (Lab 4) results]]
** Testing Framework

=== Friday (Nov 20) ===
* Hack session on the Testing Framework

=== Week 10 Deliverables ===
* Blog about your project work
* Blog about your Lab 5 results

== Week 11 ==

=== Tuesday (Nov 22) ===
* SIMD and Vectorization
* [[SPO600 Vectorization Lab|Vectorization Lab (Lab 6)]]

=== Friday (Nov 25) ===
* Discussion of the State of the Framework
* Hack Session

=== Week 11 Deliverables ===
* Blog your [[SPO600 Vectorization Lab|Lab 6]] results.

== Week 12 ==

=== Tuesday (Dec 1) ===
* Stage II Results - Brief Presentations

=== Friday (Dec 4) ===
* '''No Class''' - Early start to Exam Week

=== Week 12 Deliverables ===
* Blog about your Project Status - Stage II Results
** Provide results for the various flag combinations you tested
** Discuss the results, highlighting any anomalies

== Final Deliverables ==
* Blog about your Project Status - Stage III Results
** Important: Incorporate any feedback on your Stage II results
** Outline what you learned from your investigation into various combination of GCC flags
** Discuss what the upstream projects should do based on these results
** Communicate the results to the upstream project, if appropriate
** Outline further investigation that should be undertaken
* Blog a reflective blog post on the course
** What you have learned
** What you already knew
** What was good or bad about the way the course proceeded]
** How you might use this knowledge in the future
* This is the last chance to submit any lab postings, etc.
'''All blog postings must be in by Friday, December 18, at 11:59 pm to be included in the final grade.'''

< !--

Working with Code
* Getting Code
** In a tarball
** From git
*** Git basics
** Working with other version control systems
* Building the Code
** Make
** Configuration tools (autotools, cmake)
** The compiler toolchain
*** Preprocessor
*** Compiler
*** Assembler
*** Linker
** Debug vs. Non-debug/Stripped binaries

Looking at How Distributions Package the Code
* Using fedpkg

==== Resources ====
* [https://sourceware.org/binutils/docs-2.16/gprof/ GProf Manual]
* [http://www.thegeekstuff.com/2012/08/gprof-tutorial/ Profiling with GProf]

=== Thursday (Jan 22) ===

* [[SPO600 Baseline Builds and Benchmarking Lab|Baseline Builds and Benchmarking Lab (Lab 2)]]

=== Week 2 Deliverables ===
* Complete and blog your conclusion to the [[SPO600 Code Review Lab|Code Review Lab (Lab 1)]].
* Blog your baseline data from the [[SPO600 Baseline Builds and Benchmarking Lab|Baseline Builds and Benchmarking lab (Lab 2)]].


== Week 3 ==

=== Tuesday (Jan 27) ===

Profiling
* Profiling with <code>gprof</code>
** Build with profiling enabled (use the option <code>-pg</code> with both gcc and ld)
** Run the profile-enabled executable
** Analyze the data in the <code>gmon.out</code> file
*** <code>gprof ''nameOfBinary''</code> # Displays text profile including call graph
*** <code>gprof ''nameOfBinary'' | gprof2dot | dot | display -</code> # Displays visualization of call graph
* Other profiling tools
** OProf, SystemTap, and others
* [[SPO600 Profiling Lab]] (Lab 3)

=== Thursday (Jan 29) ===

* [[Computer Architecture]] overview (see also the [[:Category:Computer Architecture|Computer Architecture Category]])

=== Week 3 Deliverables ===

* Complete and blog your conclusions to the [[SPO600 Profiling Lab|Profiling Lab (Lab 3)]].


== Week 4 ==

=== Tuesday (Feb 3) ===
* [[SPO600 Compiled C Lab|Compiled C Lab (Lab 4)]]

=== Thursday (Feb 5) ===
* [[Compiler Optimizations]]

=== Week 4 Deliverables ===
* Blog your [[SPO600 Compiled C Lab|Compiled C Lab (Lab 4)]] results. Be sure to include a reflective section on what you learned.
* Select your topic for the [[Winter 2015 SPO600 Platform Specific Code Presentation|Platform-Specific Code Presentation]].

== Week 5 ==
* Prepare your [[Winter 2015 SPO600 Platform Specific Code Presentation|Platform-Specific Code Presentation]].

=== Week 5 Deliverables ===
* Be ready to [[Winter 2015 SPO600 Platform Specific Code Presentation|present]].

== Week 6 ==
=== Tuesday (Feb 17) ===
* Introduction to the [http://www.96boards.org/products/hikey/ HiKey] board and the [http://www.96boards.org/ 96Boards] project.
* [[Winter 2015 SPO600 Platform Specific Code Presentation|Presentations on platform-specific code]]

=== Thursday (Feb 19) ===
* [[Winter 2015 SPO600 Platform Specific Code Presentation|Presentations on platform-specific code]]

=== Week 6 Deliverables ===
* Blog about your presentation.

== Week 7 ==
=== Tuesday (Feb 24) ===
* [[SPO600 Assembler Lab|Assembly language lab (Lab 5)]]

=== Thursday (Feb 26) ===
* Remaining [[Winter 2015 SPO600 Platform Specific Code Presentation|Presentations on platform-specific code]]
* [[Inline Assembly Language]]
* [[Winter 2015 SPO600 Project|Course Projects]]

=== Week 7 Deliverables ===
* Blog your conclusion to the [[SPO600 Assembler Lab|assembly language lab (Lab 5)]] - See the ''Deliverables'' section in the lab instructions for details on what to include in your blog post.

== Week 8 ==

=== Tuesday (Mar 10) ===
* Project discussion
** Discussion of project ideas and fine-tuning of project plans
** Next steps
** Addressing Problem Areas
* Accessing and Reading Reference Documentation
** AArch64 ISA

=== Thursday (Mar 12) ===
* Project presentations
** Provide a very short (2 minute) overview of your project. Include:
*** Which piece of software you are working on
*** What area of that software needs optimization/performance tuning
*** How you are going to perform the optimization/tuning (algorithm replacement, platform-specific code, removing platform-specific code, build options, and so forth)
*** Plans for the next step
*** Engagement with the upstream community
* Use this project presentation to tell the class what you're working on and incorporate feedback into your blog post

=== Week 8 Deliverables ===
* Blog about your project and plans, incorporating feedback from your presentation
* Add your project to the [[Winter 2015 SPO600 Participants|Participants and Project Table]].

== Week 9 ==

=== Tuesday (Mar 17) ===
* Upstreaming
** Git Discussion
** Creating a Patch
** Various open source community workflows

=== Thursday (Mar 19) ===
* Spinlocks
** The need for Atomics in Spinlocks
** Using Intrinsics for Atomic Operations
* Tail Call Optimization (TCO)
** gcc will perform TCO at -O2 and higher
** Important to ensure that gcc recognizes code patterns that permit TCO to be applied

=== Week 9 Deliverables ===
* Blog at least once (and ideally more than once) about your Project
** Frequent shorter posts are better than rare long ones
** Aim to make steady progress on your project, a bit each day
** Blog about your evolving project plan and the steps you're making along the way
** Keep the work short, and focus on narrowing the scope of work as early as possible
** Keep talking to the community

== Week 10 ==

=== Tuesday (Mar 24) ===
* Discussion of GCC Intrinsics
** Where to find documentation: [https://gcc.gnu.org/onlinedocs/ GCC Manual]
** __atomic vs __sync intrinsic families
* Examination of Build Files
** Differential analysis of successful and unsuccessfull build

=== Thursday (Mar 26) ===
* Project Presentations - Stage 2
** At this point, you should have a proposed patch that you're working to get upstream

=== Week 10 Deliverables ===
* Blog posts about your project
** Include information about your patch(es)
** Include links to discussion about the patch(es) with the community (e.g., link to bug/issue tracker entries or email archives)
** If you don't have patches and/or have not pushed them upstream yet, describe the state of your project and your plan to get changes upstream.
* Blogs will be marked Monday for Stage 2 project work (20%)

== Week 11 ==

=== Tuesday (Mar 31) ===
Your professor will be away. You are welcome to use the classroom for a project hacking time and collaboration with your colleagues.

=== Thursday (Apr 2) ===
* Single Instruction / Multiple Data (SIMD)
** Brief look at x86_64 & AArch64 implementations of SIMD

=== Week 11 Deliverables ===
* Blog about your ongoing project work. Please post at least 1-2 entries per week.

== Week 12 ==

=== Tuesday (Apr 7) ===
* Discussion & Hacking Session

=== Thursday (Apr 9) ===
* Vectorization
** Using Intrinsics
** Using Auto-Vectorization

=== Week 12 Deliverables ===
* Blog about your ongoing project work. Please post at least 1-2 entries per week.
* You should have patches (code, makefiles, documentation, or tests) in the upstream review process at or before this point.
* Blog about vectorization - specifically:
** What -O level and/or options are needed to turn on the auto-vectorizer in GCC
** At least three limitations -- conditions under which the vectorization will not be performed
** The significance of alignment and non-overlapping pointers for vectorization

== Week 13 ==

=== Tuesday (Apr 14) ===
* Informal Project Presentations - Phase 3

=== Thursday (Apr 16) ===
* Wrap-up Session

=== Week 13 Deliverables ===
* Blog about your ongoing project work. Your patches should be through the upstream review process.
* Final date for posting about your project: April 22.


== Week 3 ==
This week [[User:Chris Tyler|your professor]] is at [http://connect.linaro.org/sfo15/ Linaro Connect], an engineering conference run by [http://www.linaro.org Linaro] - a distributed not-for-profit collaborative technology company focused on Linux on ARM. You can [https://www.linaro.org/connect/lcu/lcu14/remote/ participate remotely] and may find some of the sessions interesting.

* [[Fall 2015 SPO600 Compiler Options Presentation|Select and prepare to teach the class about a specific small topic related to assembly language / machine language programming]].

=== Week 3 Deliverables ===
* Be prepared to give your [[Fall 2015 SPO600 Compiler Options Presentation|presentation]] on Tuesday of next week (September 23).


== Misc / Relocated ==

* [[Computer Architecture]] overview (see also the [[:Category:Computer Architecture|Computer Architecture Category]])
* [[Winter 2015 SPO600 Assembly Language Presentation|Select and prepare to teach the class about a specific small topic related to assembly language / machine language programming]].


== Week 4 ==

=== Tuesday (Sep 23) ===
* Give your [[Fall 2014 SPO600 Assembly Language Presentation|presentation about an assembly language topic]] - teach your SPO600 colleagues

=== Friday (Sep 26) ===
* Remainder of the [[Fall 2014 SPO600 Assembly Language Presentation|presentations about an assembly language topic]]
* [[Assembler Basics|Introduction to assembly language]]
* Writing x86_64 and aarch64 code in the [[SPO600 Assembler Lab|Assembly language lab (Lab 3)]]

=== Week 4 Deliverables ===
* Blog your [[Fall 2014 SPO600 Assembly Language Presentation|presentation]]

== Week 5 ==

=== Tuesday (Sep 30) ===
* [[SPO600 Assembler Lab|Assembler Lab]]

=== Friday (Oct 3) ===

* [[Inline Assembly Language]]
* [[Compiler Optimizations]]

The [http://performance.linaro.org/ Linaro Performance Challenge] is a project initiated by [http://en.wikipedia.org/wiki/Jon_Hall_%28programmer%29 Jon "Maddog" Hall] and [http://www.linaro.org Linaro] to port or make portable open source software packages which contain platform-specific code and which may not build on the new Aarch64 architecture.

(There are two videos about the challenge, both of which are from late 2013 while the program was being finalized: [https://www.youtube.com/watch?v=Lo1dBB3tke8 One of an interview with Maddog and Steve Macintyre], and [http://people.linaro.org/linaro-connect/lcu13/videos/10-28-Monday/LCU13%20ARM%20Performance%20Optimizations.mp4 the other of a Linaro Connect presentation by Maddog]).

The [http://performance.linaro.org/find/ list of packages] for this project was originally developed by the UK Debian developer Steve Macintyre, who works for Linaro. His focus in developing that list was to find packages that contained assembly language code for x86 (or other platforms) and which did not have assembly language code for ARM, especially Aarch64. As a result, the list includes many false-positives: there are many packages on there that can successfully build on ARM, either due to C work-arounds for the missing assembly code, or conditional compilation of the assembly code, or recent updates to the software, or other reasons.

In this class, we're going to start to triage this list by analyzing which packages exist in the Fedora package set and which have been successfully built for the aarch64 architecture.

The list has been processed with these steps:
# Grab the list of packages from the Linaro Performance Challenge site.
# Find out the corresponding names of the packages in the Fedora package set. Most of these will be the same as in the list, but some may be different.
# Find out which packages have not been built for Fedora on aarch64
# Divide the resulting list up between the members of the class for further analysis

'''Please see the [[Fall 2014 SPO600 Packages by Participant]] and perform the steps listed there.'''

{{Admon/tip|Participating in the Linaro Performance Challenge|You are invited to participate in the [http://performance.linaro.org Linaro Performance Challenge] directly, utilizing the work you are doing in the SPO600 course. Doing so may enable you to receive a prize for participation and the chance to win a trip to a Linaro Connect conference. In order to participate in the Challenge, you will need to comply with the technical requirements and rules of the Challenge.<br/><br/>Your participation in this course, and the mark you receive in this course, are independent of your participation in the Linaro Performance Challenge.<br/><br/>In other words: Linaro and Seneca are distinct entities, and although you can participate in both the Challenge and SPO600 with the same project, Seneca assumes no responsibility for your interaction with Linaro, and vice-versa.}}

=== Week 5 Deliverables ===
* Blog about the [[SPO600 Assembler Lab|assembler lab (Lab 3)]].
* Do the tasks assigned on the [[Fall 2014 SPO600 Packages by Participant]] page, and blog about it.

== Week 6 ==

=== Tuesday (Oct 7) ===

Jon "Maddog" Hall will be joining us for a remote talk and Q&A via Google Hangout.

=== Friday (Oct 10) ===

In groups, we'll be analyzing software pacakges from the [[Fall 2014 SPO600 Packages by Participant|Packages by Participant]] list to find the platform-specific code and build instructions.

=== Week 6 Deliverables ===

* Pick three additional packages (not the ones done in class) from your section of the [[Fall 2014 SPO600 Packages by Participant|Packages by Participant]] list and find the platform-specific code (or build instructions). Figure out what that code does, and document that on the list page. Blog about your results and your reflections on the task.

== Week 7 ==

=== Tuesday (Oct 14) ===

Discussion of some of the reasons that platform specific (usually assembly language) code is used in software

==== Memory Barriers ====
'''Memory Barriers''' ensure that memory accesses are sequenced so that multiple threads, processes, cores, or IO devices see a predictable view of memory.
* Leif Lindholm provides an excellent explanation of memory barriers.
** Blog series - I recommend this series, especially the introduction, as a very clear explanation of memory barrier issues.
*** Part 1 - [http://community.arm.com/groups/processors/blog/2011/03/22/memory-access-ordering--an-introduction Memory Access Ordering - An Introduction]
*** Part 2 - [http://community.arm.com/groups/processors/blog/2011/04/11/memory-access-ordering-part-2--barriers-and-the-linux-kernel Memory Access Ordering Part 2 - Barriers and the Linux Kernel]
*** Part 3 - [http://community.arm.com/groups/processors/blog/2011/10/19/memory-access-ordering-part-3--memory-access-ordering-in-the-arm-architecture Memory Access Ordering Part 3 - Memory Access Ordering in the ARM Architecture]
** Presentation at Embedded Linux Conference 2010 (Note: Acquire/Release in C++11 and ARMv8 aarch64 appeared after this presentation):
*** [http://elinux.org/images/f/fa/Software_implications_memory_systems.pdf Slides]
*** [http://free-electrons.com/pub/video/2010/elce/elce2010-lindholm-memory-450p.webm Video]
* [http://www.rdrop.com/users/paulmck/scalability/paper/whymb.2010.07.23a.pdf Memory Barriers - A Hardware View for Software Hackers] - This is a highly-rated paper that explains memory barrier issues - as the title suggests, it is designed to describe the hardware origin of the problem to software developers. Despite the fact that it is an introduction to the topic, it is still very technical.
* [http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka14041.html ARM Technical Support Knowlege Article - In what situations might I need to insert memory barrier instructions?] - Note that there are some additional mechanisms present in ARMv8 aarch64, including Acquire/Release.
* [https://www.kernel.org/doc/Documentation/memory-barriers.txt Kernel Documentation on Memory Barriers] - discusses the memory barrier issue generally, and the solutions used within the Linux kernel. This is part of the kernel documentation.
* Acquire-Release mechanisms
** [http://blogs.msdn.com/b/oldnewthing/archive/2008/10/03/8969397.aspx MSDN Blog Post] with a very clear explanation of Acquire-Release.
** [http://preshing.com/20130922/acquire-and-release-fences/ Preshing on Programming post] with a good explanation.
** [http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.genc010197a/index.html ARMv8 Instruction Set Architecture Manual] (ARM InfoCentre registration required) - See the section on Acquire/Release and Load/Store, especially Load/Store Exclusive (e.g., LDREX)

==== Atomics ====
'''Atomics''' are operations which must be completed in a single step (or appear to be completed in a single step) without potential interruption.
* Wikipedia has a good basic overview of the need for atomicity in the article on [http://en.wikipedia.org/wiki/Linearizability Linerarizability]


=== Friday (Oct 17) ===

* [[Compiler Intrinsics]]
** The use of compiler intrinsics (e.g., those in gcc, or in another compiler) locks you into the use of that specific compiler (or another that supports the exact same intrinsics), but it provides platform portability. It is better to use language features (e.g., C11 or C++11 atomic and acquire/release syntax) where possible, but since that is often not possible, the use of compiler intrinsics is more maintainable than inline assembly.
** GCC provides intrinsics (built-in functions) for atomic operations, as documented in the GCC manual:
*** [http://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/_005f_005fsync-Builtins.html#_005f_005fsync-Builtins Legacy __sync Built-in Functions for Atomic Memory Access]
*** [http://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/_005f_005fatomic-Builtins.html#_005f_005fatomic-Builtins Built-in functions for memory model aware atomic operations]
** The Fedora project has some guidelines/recommendations for the use of these GCC builtins:
*** http://fedoraproject.org/wiki/Architectures/ARM/GCCBuiltInAtomicOperations
* Select your project(s):
** Criteria:
**# Interest
**# Scope
**# Fit between your skills and project needs
**# Upstream status (e.g., dead project)

=== Week 7 Deliverables ===

# Select at least two software packages from the [http://performance.linaro.org Linaro performance web site] and/or the [[Fall 2014 SPO600 Packages by Participant|Packages]] page.
# Record your choice on:
## The [[Fall 2014 SPO600 Participants|Participants page]] - so that your colleagues in class know that you're working on the package(s). '''Note:''' Package choices will be approved by [[User:Chris Tyler|your professor]], but will usually be accepted on a first-come, first-served basis.
## The [http://performance.linaro.org Linaro performance web site] - this will tell other people outside of our group within the Linux-on-ARM community that you are working on the package(s).
# Investigate and blog about your choice.

'''Over reading week:'''
# Contact the upstream communities for the packages you have selected -- so that they know that you are working on the package and to open a channel of communication for your forthcoming patches (or benchmarks, or other results).
# Formulate a work plan that will conclude with landing your software changes in the upstream software before the end of the course.
# Blog about your work plan and what you need to investigate/learn in order to complete your project.

== Week 8 ==

=== Tuesday (Oct 28) ===

Working with the Code
* Working with GIT
* Working with other version control systems

Looking at How Distributions Package the Code
* Using fedpkg

=== Friday (Oct 31) ===
* Benchmarking and Profiling

* Profiling with <code>gprof</code>
** Build with profiling enabled (use the option <code>-pg</code> with both gcc and ld)
** Run the profile-enabled executable
** Analyze the data in the <code>gmon.out</code> file
*** <code>gprof ''nameOfBinary''</code> # Displays text profile including call graph
*** <code>gprof ''nameOfBinary'' | gprof2dot | dot | display -</code> # Displays visualization of call graph

Resources
* [https://sourceware.org/binutils/docs-2.16/gprof/ GProf Manual]
* [http://www.thegeekstuff.com/2012/08/gprof-tutorial/ Profiling with GProf]

=== Week 8 Deliverables ===
* Blog about your progress connecting with the communities associated with your projects and working with the code.

== Week 9 ==
=== Tuesday (Nov 4) ==
* Profiling/baseline benchmarking review
* Hacking session

=== Friday (Nov 7) ===
* Hacking session

=== Week 9 Deliverables ===
* Blog about your baseline benchmarking/profiling.

== Week 10 ==
=== Tuesday (Nov 11) ===
* Presentation on your project status

=== Friday (Nov 14) ===
* Running AArch64 code on x86
** Foundation models
** [[AArch64 QEMU User Space Emulation]]

=== Week 10 Deliverables ===
* Blog about your project status

== Week 11 ==
=== Tuesday (Nov 18) ===
* Discussion and hack session
** Blog post about upstreaming: [https://www.linaro.org/blog/core-dump/working-upstream/ What do we mean by working upstream: A long-term contributor's view]

=== Friday (Nov 21) ===
* Discussion and hack session

=== Week 11 Deliverables ===
* Upstream your changes/test results/documentation
* Blog about your work
* '''Note: Blogs will be marked as of Nov 21 11:59 pm'''

== Week 12 ==
=== Tuesday (Nov 25) ===
* Project update presentations

=== Friday (Nov 28) ===
* Discussion and hack session: ''Commercial vs. Technical Reality''

== Week 13 ==

=== Tuesday (Dec 2) ===
* Discussion and hack session

=== Friday (Dec 5) ===
* Wrap-up session
* '''Remember: Final project submissions via blog are due 11:59 pm December 10.'''
-- >
-->

<BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/><BR/>