Skip to content

Final project for the "Advanced Multiprocessor Programming" @ TU Wien

License

Notifications You must be signed in to change notification settings

cima22/MRSW-register_snapshot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MRSW-register snapshot

Final project for the course Advanced Multiprocessor Programming @ TU Wien.

Wait-free snapshot

A wait-free snapshot is a concurrent object taken from the theory of shared-memory multiprocessor programming. An atomic snapshot constructs an instantaneous view of an array of atomic registers. It is wait-free, meaning that a thread can take an instantaneous snapshot of memory without delaying any other thread. Atomic snapshots might be useful for backups or checkpoints (Chapter no. 4 of "The art of multiprocessor programming"[1].

Goal of the project

  • Implement the Multiple Reader Single Writer wait-free snapshot presented in the Chapter 4 of "The Art of Multiprocessor Programming" book [1]
  • Implement Multiple Reader Single Writer wait-free partial snapshot extension taken from "Help when needed, but no more: Efficient read/write partial snapshot" by Damien Imbs et al. [2]
  • Test both the implementations for correctness
  • Benchmark the methods exposed by the object, with different combinations of operations and increasing number of threads

Description

In this repository there are present:

  • Project-3_Report.pdf, a report of the entire project in PDF format

  • Makefile to compile the code

  • The two main directories: WFSnapshot which contains the wait-free implementation from the book, and PSnapshot which contains the implementation from the cited paper. The two directories share the same structure, which is made of:

    • src directory containing the source code
    • build directory containing the .o files built after compilation
    • test directory containing the source code for testing the implementations
    • data directory containing the data which would be generated after running the banchmarks
  • plots directory containting the tex code to produce plots out of the benchmark data

  • benchmark.py a Python script to responsible to run the benchmarks

How to compile

Fast Compile

Just type

make

To compile and build the two executables of the benchmarks, which will be present in the two directories WFSnapshot and PSnapshot.

Small benchmark

Just type

make small-bench

To compile and execute the Python benchmark, which will generate the data gathered into the data directory. The two metrics measured are:

  • Average latency: average amount of milliseconds to execute the operations exposed by the implementations
  • Throughput: number of operations execute in a certain amount of time

Small plot

Just type

make small-plot

To generate .png images out of the data, just type

Test

Just type

make test

To generate, into the two test directories present into the two main ones, the executable containing some tests about the correctness of the implementations.

Dependencies and prerequisites

Make sure to have the gcc compiler installed alongside with the OpenMp library.

Authors and acknowledgment

Project carried out by Cimador Gabriele, Gunter Kambiz, Ionescu Serban.

License

Repository licensed with the MIT license. See the LICENSE for rights and limitations.

About

Final project for the "Advanced Multiprocessor Programming" @ TU Wien

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published