Difference between revisions of "GPU621/The Chapel Programming Language"
(→Task Parallelism) |
(→Language Basics) |
||
Line 33: | Line 33: | ||
=== Language Basics === | === Language Basics === | ||
− | ==== | + | ==== Variables ==== |
The variable declaration requires a type or initializer. | The variable declaration requires a type or initializer. | ||
Line 62: | Line 62: | ||
==== Classes: ==== | ==== Classes: ==== | ||
− | A class is a type of collection that collects ''variables'', ''procedures'' and ''iterators''. We use '''class''' keyword to declare a new class type and use '''new''' keyword to create its | + | A class is a type of collection that collects ''variables'', ''procedures'' and ''iterators''. We use '''class''' keyword to declare a new class type and use '''new''' keyword to create its instance. |
class myClass { | class myClass { | ||
Line 76: | Line 76: | ||
Records are similar to classes. '''Records''' doesn't support inheritance and virtual dispatch but it supports copy constructor and copy assignment. And record variables refer to a distinct memory. | Records are similar to classes. '''Records''' doesn't support inheritance and virtual dispatch but it supports copy constructor and copy assignment. And record variables refer to a distinct memory. | ||
− | |||
=== Iterators === | === Iterators === |
Revision as of 16:58, 2 December 2020
Contents
- 1 Project Description
- 2 The Chapel Programming Language
- 3 References
Project Description
The Chapel is a portable, scalable, open-source modern parallel programming language designed to be productive. The Chapel is a high-level programming language that tends to be more human-readable and writable with some similarity to Python. The Chapel's performance can compete or even surpass MPI/OpenMP. This project will introduce the main functionality of Chapel programming language, compare the code and performance to C++ MPI/OpenMP, analysis the pros and cons of the Chapel.
Team Members
Installation
The Chapel is an open-source language that still constantly updates. The latest version as of the creation of this project is 1.23.0 released on October 15, 2020.
There is currently no official support for The Chapel Programming Language in major known IDE like Visual Studio, which is a downside compared to other languages in terms of usability.
Select one of the following options to install The Chapel Programming Language.
Pre-packaged Chapel installations are available for:
- Cray® XC™ systems
- Docker users (Requires to install Docker Engine, available on Linux, MAC, Windows 10)
- Mac OS X Homebrew users
GitHub source code download available here.
Users can also try The Chapel online here, though the version is currently stuck on Chapel 1.20.
The Chapel Programming Language
Main Functionality
//https://chapel-lang.org/docs/primers/
Language Basics
Variables
The variable declaration requires a type or initializer.
var: variable declarations.
const: runtime constants and compile-time constants. Must be initialized.
param: runtime constants and compile-time constants. Must be known at compile time.
var myVar1: real; const myVar2: real = sqrt(myVar1); param myVar3 = 3.14;
config: used before var, const, param keywords to allow overridden on the command line.
config var myVar4: bool = false; //./variable --myVariable=true
Procedures:
A procedure is like a function in C++ that can be used or called inside the program.
proc plus(x: int) : int { return x + 1; }
Classes:
A class is a type of collection that collects variables, procedures and iterators. We use class keyword to declare a new class type and use new keyword to create its instance.
class myClass { var a, b: int; proc print() { writeln("a = ", a, " b = ", b); } } var foo = new myClass(0, 1); foo.print();
Records:
Records are similar to classes. Records doesn't support inheritance and virtual dispatch but it supports copy constructor and copy assignment. And record variables refer to a distinct memory.
Iterators
Iterators are declared like procedure in Chapel. Unlike processes, iterators typically return a sequence of values.
We declared the yield statement inside the iterator bodies, it returns a value and suspends the execution.
iter fibonacci(n: int): int { var i1 = 0, i2 = 1; for i in 1..#n { yield i1; var i3 = i1 + i2; i1 = i2; i2 = i3; } } config const n =10; for idVar in fibonacci(n) do writeln(" - ", idVar);
Parallel Iterators
There are two types of parallel iterator in Chapel:
Leader-follower iterators: implement zippered forall loops.
Standalone parallel iterators: implement non-zippered forall loops.
An example code:
iter fibonacci(n: int): int { var i1 = 0, i2 = 1; for i in 1..#n { yield i1; var i3 = i1 + i2; i1 = i2; i2 = i3; } } config const n =10; for (i,idVar) in zip(0..n, fibonacci(n)) do writeln("#", i, " - ", idVar);
Leader-follower iterator
forall (a, b, c) in zip(A, B, C) do //in here, A is the leader; and A, B, C is followers
leader iterator will create the parallel tasks for its forall loop and set iterations to each parallel task.
follower iterator will take input and iterate over it; create opposite results in order.
Task Parallelism
basic
Three basic parallel features:
begin: it creates a independent thread. Unable to confirm who will execute first.
cobeign: it creates a block of tasks. The main thread will continue until the statements inside are finished.
coforall: it is a loop of cobegin syntax in which each iteration is a separate task. The main thread will also continue until the loop is finished.
The order of execution within each iteration is determined, and the order of iteration will execute first is not determined.
An example code:
const numTasks = here.numPUs(); cobegin { writeln("Hello from task 1 of 2"); writeln("Hello from task 2 of 2"); } coforall tid in 1..numTasks do writef("Hello from task %n of %n\n", tid, numTasks);
Sync/Single
Sync and single are type qualifiers that end with $ when you declare it.
They have an associated state (full/empty); when you declare it with an initializing expression, the statement will be full; otherwise it is empty and the value of that variable is the default value of its type.
empty is the only state that you can write a value to it, and after writing it changes to full.
full is the only state that you can read the value from a variable; After reading, sync variable will change to empty and single variable doesn't change.
Methods for sync/single variables:
- For both sync and single variables:
- isFull - return true if variable's statement is full.
- writeEF() - it will block until variable's statement is empty, then set the argument value.
- readFF() - it will block until variable's statement is full, then read the value and return the value. sync and single variable cannot directly output, use this method to output the value.
- readXX() - return the value regardless variable's statement.
- For sync variables only:
- reset() - set the value to its type's default value and set statement to empty.
- readFE() - it will block until variable's statement is full, then read the value and return the value. using this method to output the value.
- writeXF() - set the argument value without block the execution.
- writeFF() - it will block until variable's statement is full, then set the argument value without change the state.
An example code:
var sy$: sync int = 2; // state = full, value = 2 var getSy = sy$; // sy$: state = empty writeln("Default value: ", getSy); var done$: sync bool; writeln("Create thread"); begin { var getNewsy = sy$; // This statement will block until sy$ is full writeln("In child thread, sy=", getNewsy); done$ = true; } writeln("Thread created"); var result = done$.readXX(); writeln("Thread finished? ", result); sy$ = getSy; writeln("Thread finished? ", done$.readFE());
Locality
Data Parallelism
Library Utilities
Numerical Libraries
Code Comparesion to MPI & OpenMP
Pros and Cons of Using The Chapel
Adoption
Small Number of Contributors
temp
References
- The Chapel Programming Language official page: https://chapel-lang.org/
- The Chapel Documentation: https://chapel-lang.org/docs/#
- Full-Length Chapel Tutorial: https://chapel-lang.org/tutorials.html
- Learn Chapel in Y Minutes: https://learnxinyminutes.com/docs/chapel/
- Specific Chapel Concepts or Features: https://chapel-lang.org/docs/primers/
- October 2018 Chapel Tutorial: https://chapel-lang.org/tmp/OctTut2018/slides.html
- The Chapel Promotional Video: https://youtu.be/2yye1yJPcsg
- The Chapel Overview Talk Video: https://youtu.be/ko11tLuchvg
- The Chapel Overview Talk Slide: https://chapel-lang.org/presentations/ChapelForHPCKM-presented.pdf