Skip to content

dalvangriebler/SPar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SPar is an internal C++ Domain-Specific Language (DSL) for expressing stream parallelism.

How to Cite SPar

Griebler, D.; Danelutto, M.; Torquati, M.; Fernandes, L. G. SPar: a DSL for High-Level and Productive Stream Parallelism. Parallel Processing Letters (PPL), 27 (01), pp. 1740005, 2017. [PDF]

SPar using robust applications

Griebler, Dalvan; Filho, Renato B H; Danelutto, Marco; Fernandes, Luiz Gustavo. High-Level and Productive Stream Parallelism for Dedup, Ferret, and Bzip2. International Journal of Parallel Programming, pp. 1-19, 2018. [PDF]

There are more publications here

Root directory description

.bin

contains the 'spar' compiler, which is responsible for recognizing SPar annotation and generate stream-based parallel code targeting multi-core systems with FastFlow library (which builds on top of Pthreads)

.doc

contains all documentation

.examples

examples using SPar annotations

.libraries

are the libraries used by SPar

For compiling a program with spar, please type:

$ bin/spar -std=c++1y -spar_file <filename>.cpp -o <filename> 

SPar compilation flags

  • -spar_print => used to print in the screen the generated code

  • -spar_ondemand [<queue_size>] => used to generate ondmand scheduler

  • -spar_ordered => used to preserve the stream elements' ordered

  • -spar_blocking => used to activate the blocking mode of FastFlow

Obs: you may use '-h' to see more options