Optimization & Vectorization

Utrecht University - Information and Computing Sciences

academic year 2024/25 – 4th block

title image title image title image

Navigation

News

WELCOME!

Examination & Grading

Course Overview

Schedule

Literature & Links


Course Overview back to navigation

bunny logo image

Course: INFOMOV is a practical course on optimization: the art of improving software performance, without affecting functionality. We apply high level and low level optimizations, in a structured manner. Especially for the low level optimizations, we must intimately understand the hardware platform (CPU, GPU, memory, caches) and modify our code to use it efficiently.

Vectorization: Modern processors achieve their performance levels using parallel execution. This happens on the thread level, but also on the instruction level. Being able to produce efficient vectorized code is an important factor in achieving peak performance.

GPGPU: Graphics processors employ a streaming code execution model, taking vectorization to extremes, both in the programming model and the underlying architecture. Leveraging GPU processing power is an important option when optimizing existing code.

Context: Optimization is a vital skill for game engine developers, but also applies to other fields.

Lecturer:

Comms: join us on INFOMOV (Teams).

Lectures:

  • Mondays, 13:15 - 15:00 (BBG - 209)
    Monday Q&A: 15:15 - 17:00
  • Thursdays, 10:00 - 11:45 (BBG - 214)
    Thursday Q&A: 09:15 - 09:45
    Thursday Q&A: 12:00 - 12:45

Lectures will be recorded; recordings will be published with at least a 1-week delay.

Exam:

  • Monday June 23, in OLYMPUS HALL 3
  • Retake: Monday July 7, in EDUC-GAMMA

Small print: The course will be taught in English. Warning: A decent level of C/C++ is expected. Expect a significantly higher workload if you are a C++ novice. Course materials are provided for Windows machines. You are welcome to use an alternative, but please be aware that you are expected to solve technical hurdles yourself.


Files back to navigation

Downloads

Fundamentals:
C++ Programming Template for your experiments; includes an OpenCL framework.
Safety-net application for assignment 3.

Practice / demonstration materials:
Will be made available here during the course.

Lecture slides:
Will be made available here during the course.

Exams from previous editions of the course:
INFOMOV'16 Final Exam
INFOMOV'17 Final Exam
INFOMOV'18 Final Exam (with answers)
INFOMOV'19 Final Exam (with answers)
INFOMOV'21 Final Exam (with answers)
INFOMOV'22 Final Exam (with answers)
There is no INFOMOV'20 exam; between 19 and 20 the course moved from block A to block D.




Course Schedule back to navigation

Period 4 Schedule

Week  Date/Time  Topic & notes
17
Mon April 21
13:15-15:00  
NO LECTURE
Easter Monday

 
Thu Apr 24
10:00-11:45
Lecture 1:
Introduction


18
Mon April 28
13:15-15:00  
Lecture 2:
Low-level
 
Thu May 1
10:00-11:45
Lecture 3:
Profiling


19
Mon May 5
13:15-15:00
NO LECTURE
Liberation Day



Thu May 8
10:00-11:45
Lecture 4:
Caches (1)
Fri May 9, 17:00:
Deadline Assignment 1
Sat May 10, 17:00:
Extended Deadline (-1 pt)
20
Mon May 12
13:15-15:00
Lecture 5:
SIMD (1)


Thu May 15
10:00-11:45
Lecture 6:
Caches (2)


21
Mon May 19
13:15-15:00
Lecture 7:
SIMD (2)


Thu May 22
10:00-11:45
Lecture 8:
GPGPU (1)


22
Mon May 26
13:15-15:00
Lecture 9:
Data Oriented Design


Thu May 29
10:00-11:45
NO LECTURE
Ascension Day

Fri May 30, 17:00:
Deadline Assignment 2
Sat May 31, 17:00:
Extended Deadline (-1 pt)
23
Mon Jun 2
13:15-15:00
NO LECTURE
Lecturer Unavailable


 
Thu Jun 5
10:00-11:45
Lecture 10 - GUEST LECTURE:
Manon Oomen (Traverse Research)


24
Mon Jun 9
13:15-15:00
NO LECTURE
Whit Monday


 
Thu Jun 12
10:00-11:45
Lecture 11:
GPGPU (2)
 
25
Mon Jun 16
13:15-15:00
Lecture 12:
Fixed Point
 
Thu Jun 19
10:00-11:45
Lecture 13:
Recap/Exam Prep
Fri June 20, 17:00:
Deadline Assignment 3
 Sat Jun 21, 17:00:
Extended Deadline (-1 pt)

26


EXAM WEEK
       &
RETAKE WEEK EVENTS
Exam: Monday June 23, 13:30 - 15:30
in OLYMPUS HALL 3

Retake: Monday July 7, 13:30 - 15:30
in EDUC-GAMMA



Assignments back to navigation


All assignments can be done alone or in teams of two students. For teams: it is not mandatory to do all four assignments with the same partner; switching is allowed.


Assignment P1 - PEDAL TO THE METAL

For this assignment you will apply low-level optimization to a graphical application.

Deadline for this assignment: Friday May 9, 17:00.


Assignment P2 - BREADTH FIRST

For this assignment you will create your own cache simulator.

Deadline for this assignment: Friday May 30, 17:00.


Assignment P3 - NOT A DRILL

For the final assignment, you will optimize an application that you chose using the structured optimization process.

Deadline for this assignment: Friday June 20, 17:00.

 

Exam & Grading back to navigation

GRADING

Programming assignments: Your practical grade P is based on three programming assignments P1 (25%), P2 (25%), and one final assignment P3 (50%).

Exam: Your exam/theory grade T is based on a single final exam.

Final grade: Your final grade is (3P + T) / 4. Additional requirement: You must score at least 5.0 for the exam (before rounding) to pass this course.

RETAKES AND REQUIREMENTS

Retake: To qualify for a retake, the final grade must be at least 4 (before rounding). You may repair your final grade by redoing one of the three assignments, or the exam. Exact terms will be discussed individually.

 

Literature & Links back to navigation

Overview of literature used during this course:

Links verified on September 5, 2020.


Previous editions