Difference between revisions of "SPO600"

From CDOT Wiki
Jump to: navigation, search
Line 4: Line 4:
 
|<div style="background:#ffff00">[[Fall 2014 SPO600 Weekly Schedule|Weekly Schedule]]</div>[[Fall 2014 SPO600 Participants|Participants and Project Table]]<br />[http://www.senecacollege.ca/ssos/findWithoutSemester/spo600/sict Course Outline]<br />[[SPO600 Course Policies|Course Policies]]<br />[http://linaro.org Linaro]<br />[http://zenit.senecac.on.ca/~chris.tyler/planet/ Planet CDOT]<br />
 
|<div style="background:#ffff00">[[Fall 2014 SPO600 Weekly Schedule|Weekly Schedule]]</div>[[Fall 2014 SPO600 Participants|Participants and Project Table]]<br />[http://www.senecacollege.ca/ssos/findWithoutSemester/spo600/sict Course Outline]<br />[[SPO600 Course Policies|Course Policies]]<br />[http://linaro.org Linaro]<br />[http://zenit.senecac.on.ca/~chris.tyler/planet/ Planet CDOT]<br />
 
|}[[Category:SPO600]]
 
|}[[Category:SPO600]]
 +
 +
{{Admon/tip|Who is this course for?|This course is open to both CTY (system and network administration) and CPA (software development) students. Each group brings unique but overlapping skills: CTY students have a strong understanding of operating systems and administrative procedures, and CPA students have a strong understanding of programming. This course provides a range of project opportunities requiring different combinations of skills from each program of study.}}
 +
 +
{{Admon/tip|Why take this course?|In this course, you'll learn about the internal details of computer architecture and the lowest levels of programming - the instructions that a compiler produces from your code. You'll also learn how to port code to work on a new architecture (or on a range of architectures), benchmark software performance, and debug code. This is a project-based course, and you will gain experience working directly with one or more open source communities on code that is in everyday use.
 +
 +
After completing this course, you will be able to understand the fundamentals of computer architecture and operation, build and/or write software that performs well, work with multiple computer architectures, and participate in open source projects. This is a challenging course but it should be rewarding for students interested in the details of computer architecture and software operation.}}
  
 
= Software Portability and Optimization =
 
= Software Portability and Optimization =

Revision as of 09:57, 15 July 2014

Quick Links
Participants and Project Table
Course Outline
Course Policies
Linaro
Planet CDOT
Idea.png
Who is this course for?
This course is open to both CTY (system and network administration) and CPA (software development) students. Each group brings unique but overlapping skills: CTY students have a strong understanding of operating systems and administrative procedures, and CPA students have a strong understanding of programming. This course provides a range of project opportunities requiring different combinations of skills from each program of study.
Idea.png
Why take this course?
In this course, you'll learn about the internal details of computer architecture and the lowest levels of programming - the instructions that a compiler produces from your code. You'll also learn how to port code to work on a new architecture (or on a range of architectures), benchmark software performance, and debug code. This is a project-based course, and you will gain experience working directly with one or more open source communities on code that is in everyday use. After completing this course, you will be able to understand the fundamentals of computer architecture and operation, build and/or write software that performs well, work with multiple computer architectures, and participate in open source projects. This is a challenging course but it should be rewarding for students interested in the details of computer architecture and software operation.

Software Portability and Optimization

Software is sometimes written to work on a specific computer architecture (type of computer), such as Intel-compatible x86_64 PCs, or IBM Z9 mainframes. This course is about bringing software to a new architecture.

This course deals with the challenge of making software compatible with a new architecture in one of two ways:

  1. Adding additional architecture-specific code so that the software can run on the new architecture ('porting' the software), or
  2. Removing the architecture-specific code and replacing it with architectural-neutral code, so that it can run on a variety of system architectures (making the software 'portable').

In either case, software can be altered or it can be built in such a way that performance is optimized - so that runs faster, or it uses less memory or other resources. In order to test optimizations, we'll be performing benchmark testing before and after modification.

SPO600 is a professional option in the Seneca School of Information and Communication Technology CTY and CPA programs. First offered: Winter 2014.

SPO600 in Fall 2014

In SPO600, you'll be working directly with open source communities to port software. This semester, we'll be collaborating with a project set up by Jon "Maddog" Hall and Linaro to port and optimize software which doesn't currently run on 64-bit ARM (aarch64) computers. This project has identified around 1400 software packages that need work. (As a bonus, completed projects may be eligible for recognition and possibly prizes from Linaro).

Note that, unlike some other project-based courses, the results of the projects done in SPO600 will be incorporated into open source projects, and have a real impact on other people. For this reason, projects must be completed in collaboration with the relevant open source communities, using relevant communication tools. Work performed in this course will be licensed using the relevant open source licenses used by the associated community.

Working in an open source community provides the opportunity to build solid real-world experience, your technical skills and reputation, and a network of contacts, all of which are useful in developing your career.

Course Materials / System Requirements

  • Course information and labs are online.
  • You will require access to a personal Linux installation on a 64-bit (x86_64) computer (ideally, a fast one). This may be on your own laptop, on a large/fast virtual machine on your laptop, on an SSH-accessible system (such as a home desktop computer), or on a SATA disk pack or USB drive for use with the Seneca computers.
  • You will need to be able to ssh to computer systems at Seneca (CDOT).

Professor

SPO600 is taught by Chris Tyler.

Succeeding in SPO600

There are three keys to success in this course:

1. Work in the open source community. The projects we will be doing are too large and too unfamiliar for you to succeed entirely on your own. You will need to use the community's knowledge, connections, and resources to succeed well. Respect the community's standards, tell the community what you're doing, ask when you have a question, and pull your own weight within the community.

2. Blog. Tell your professor, your colleagues, the community, and everyone else what you're doing. Write a lot and write well, include good technical content, and incorporate links to all relevant resources and the product of your work, and write often. Almost all of your work in this course is submitted by blogging.

3. Be ambitious. In this course, you will need to be the driving force behind your project. The community will help you, but it's up to you to supply the energy. It's best to plan to make a bit of progress each day.

Weekly Outline

See the Fall 2014 SPO600 Weekly Schedule for specific dates and topics.

Course Outline

See the online course outline for course details.