Official course description:

Basic info last published 26/02-19
Course info
Language:
English
ECTS points:
7.5
Course code:
KSPRCPP2KU
Offered to guest students:
-
Offered to exchange students:
Offered as a single subject:
-
Programme
Level:
MSc. Master
Programme:
M.Sc. in IT, Computer Science
Staff
Course semester
Semester
Efterår 2018
Start
27 August 2018
End
28 December 2018
Exam
Exam type
ordinær
Internal/External
ekstern censur
Grade Scale
7-trinsskala
Exam Language
GB
Abstract

This course is about that part of programming that focuses on parallelism and concurrency. The Java programming language is the language used for practically addressing such aspects.

Description

Parallel and Concurrent Programming used to be an exception in the past: it is now the norm and all software systems are mostly made by several entities concurrently interacting with each other. Therefore, it is extremely important that computer science graduates acquire this knowledge.

In this course you learn how to write correct and efficient concurrent and parallel software, primarily using Java, on standard shared-memory multicore hardware such as laptops, desktops and servers.

The course covers basic mechanisms such as threads, locks and shared memory as well as more advanced mechanisms such as functional parallel stream operations, transactional memory, message passing, and lock-free data structures implemented using atomic compare-and-swap instructions. It covers concepts such as atomicity, safety, liveness and deadlock. It covers how to measure and understand performance and scalability of parallel programs. It covers tools and methods to find bugs in concurrent programs, and reason about their correctness.

Topics covered include: 

  • Threads and locks in Java, shared mutable memory, mutual exclusion, atomic operations, avoiding sharing (thread confinement, stack confinement), designing thread-safe classes, the Java monitor pattern, object graph sharing. 
  • Visibility, volatile, immutable objects, final, the Java memory model. 
  • Functional programming, stream pipelines for bulk data, parallel operations on streams and arrays. 
  • Performance and scalability, performance measurements, scalability case studies: concurrent hashmap, parallel quicksort. 
  • Tasks, the Java executor framework, concurrent pipelines, blocking queues. 
  • Concurrency and single-threaded GUI applications. 
  • Testing concurrent programs, correctness, safety and liveness concepts, deadlock, livelock, tools. 
  • Transactional memory, the Multiverse library. 
  • Optimistic concurrency, lock-free data structures, Treiber stack, compare-and-swap, the Michael and Scott queue, progress concepts, how to implement a lock. 
  • Message passing concurrency, concepts from Erlang, the Java Akka framework. 

Formal prerequisites
Students must know the Java programming language very well, including inner classes, generics, and a first exposure to threads and locks, and event-based graphical user interfaces as in Swing or AWT.
Intended learning outcomes

After the course, the student should be able to:

  • ANALYSE the correctness of concurrent Java software, and RELATE it to the Java memory model
  • ANALYSE the performance of concurrent Java software
  • APPLY Java threads and related language features (locks, final and volatile fields) and libraries (concurrent collections) to CONSTRUCT correct and well-performing concurrent Java software
  • USE software tools for accelerated testing and analysis of concurrency problems in Java software
  • CONTRAST different communication mechanisms (shared mutable memory, transactional memory, message passing)
Ordinary exam
Exam type:
C: Written report, external (7-trinsskala)
Exam description:
Written take-home exam (individual mini-project) - Total duration 30 hours - Expected exam workload 16 hours - Individual - Date and time for exam publication and solution hand-in will be published in LearnIT. - Submission in LearnIT - All materials, including Internet access, allowed - Plagiarism, collaboration and copying of solutions not allowed. - There is no oral exam but a fraud check will be conducted after the hand-in. The study administration will randomly select 20 % of students who will have to show up at ITU to check authorship of submitted solutions. The selection of students and the place and time for the fraud check will be published in Learn IT.