Skip to content

Commit 2f919b9

Browse files
authored
Merge pull request #25 from DanilaFe/update-for-new-chapel
Update code to work with Chapel 2.0, quiet some linter warnings
2 parents 89c58a3 + 6be8edf commit 2f919b9

11 files changed

+115
-77
lines changed

episodes/01-intro.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Chapel source code must be written in text files with the extension **_.chpl_**.
3535
world"-type program to demonstrate how we write Chapel code! Using your favourite text editor, create the file
3636
`hello.chpl` with the following content:
3737

38-
```bash
38+
```chpl
3939
writeln('If we can see this, everything works!');
4040
```
4141

@@ -46,12 +46,14 @@ chpl --fast hello.chpl
4646
```
4747

4848
The flag `--fast` indicates the compiler to optimise the binary to run as fast as possible in the given
49-
architecture. The `-o` option tells Chapel what to call the final output program, in this case `hello.o`.
49+
architecture. By default, the compiler will produce a program with the same name
50+
as the source file. In our case, the program will be called `hello`. The `-o`
51+
option can be used to change the name of the generated binary.
5052

5153
To run the code, you execute it as you would any other program:
5254

5355
```bash
54-
./hello.o
56+
./hello
5557
```
5658
```output
5759
If we can see this, everything works!
@@ -82,7 +84,7 @@ and then inside that job compile and run the test code
8284

8385
```bash
8486
chpl --fast hello.chpl
85-
./hello.o
87+
./hello
8688
```
8789

8890
For production jobs, you would compile the code and then submit a batch script to the queue:
@@ -137,5 +139,5 @@ So, our objective is to:
137139
::::::::::::::::::::::::::::::::::::: keypoints
138140
- "Chapel is a compiled language - any programs we make must be compiled with `chpl`."
139141
- "The `--fast` flag instructs the Chapel compiler to optimise our code."
140-
- "The `-o` flag tells the compiler what to name our output (otherwise it gets named `a.out`)"
142+
- "The `-o` flag tells the compiler what to name our output (otherwise it gets named after the source file)"
141143
::::::::::::::::::::::::::::::::::::::::::::::::

episodes/02-variables.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this example, our code is called `operators.chpl`. You can compile it with th
3131

3232
```bash
3333
chpl operators.chpl --fast
34-
./operators.o
34+
./operators
3535
```
3636

3737
You should see output that looks something like the following:
@@ -139,7 +139,7 @@ writeln("counter is ", counter, " and delta is ", delta);
139139
```
140140
```bash
141141
chpl variables.chpl
142-
./variables.o
142+
./variables
143143
```
144144
```output
145145
counter is 0 and delta is 0.0
@@ -154,7 +154,7 @@ writeln('The value of test is ', test, ' and its type is ', test.type:string);
154154
```
155155
```bash
156156
chpl variables.chpl
157-
./variables.o
157+
./variables
158158
```
159159
```output
160160
The value of test is 100 and its type is int(64)

episodes/03-ranges-arrays.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ for x in example_range do writeln(x);
2727

2828
```bash
2929
chpl ranges.chpl
30-
./ranges.o
30+
./ranges
3131
```
3232

3333
```output
@@ -66,7 +66,7 @@ writeln('When set to a range: ', example_array);
6666

6767
```bash
6868
chpl ranges.chpl
69-
./ranges.o
69+
./ranges
7070
```
7171

7272
```output
@@ -104,7 +104,7 @@ writeln(example_array);
104104

105105
```bash
106106
chpl ranges.chpl
107-
./ranges.o
107+
./ranges
108108
```
109109

110110
```output
@@ -139,7 +139,7 @@ writeln(example_array);
139139

140140
```bash
141141
chpl ranges.chpl
142-
./ranges.o
142+
./ranges
143143
```
144144

145145
```output

episodes/04-conditionals.md

+30-14
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ writeln(1 <= 2);
2828

2929
```bash
3030
chpl conditionals.chpl
31-
./conditionals.o
31+
./conditionals
3232
```
3333

3434
```output
@@ -57,7 +57,7 @@ writeln(true || false);
5757

5858
```bash
5959
chpl conditionals.chpl
60-
./conditionals.o
60+
./conditionals
6161
```
6262

6363
```output
@@ -77,12 +77,19 @@ true
7777
The general syntax of a while statement is:
7878

7979
```chpl
80-
while condition do
81-
{instructions}
80+
// single-statement form
81+
while condition do
82+
instruction
83+
84+
// multi-statement form
85+
while condition
86+
{
87+
instructions
88+
}
8289
```
8390

8491
The code flows as follows: first, the condition is evaluated, and then, if it is satisfied, all the
85-
instructions within the curly brackets are executed one by one. This will be repeated over and over again
92+
instructions within the curly brackets or `do` are executed one by one. This will be repeated over and over again
8693
until the condition does not hold anymore.
8794

8895
The main loop in our simulation can be programmed using a while statement like this
@@ -91,7 +98,7 @@ The main loop in our simulation can be programmed using a while statement like t
9198
//this is the main loop of the simulation
9299
var c = 0;
93100
delta = tolerance;
94-
while (c < niter && delta >= tolerance) do
101+
while (c < niter && delta >= tolerance)
95102
{
96103
c += 1;
97104
// actual simulation calculations will go here
@@ -115,9 +122,16 @@ at the desired position. This is the type of control that an **_if statement_**
115122
is:
116123

117124
```chpl
118-
if condition then
119-
{instructions A}
120-
else
125+
// single-statement form
126+
if condition then
127+
instruction A
128+
else
129+
instruction B
130+
131+
// multi-statement form
132+
if condition
133+
{instructions A}
134+
else
121135
{instructions B}
122136
```
123137

@@ -148,6 +162,8 @@ const y = 50; // column number of the desired position
148162
const tolerance = 0.0001; // smallest difference in temperature that
149163
// would be accepted before stopping
150164
const outputFrequency: int = 20; // the temperature will be printed every outputFrequency iterations
165+
var delta: real; // greatest difference in temperature from one iteration to another
166+
var tmp: real; // for temporary results
151167
152168
// this is our "plate"
153169
var temp: [0..rows+1, 0..cols+1] real = 25;
@@ -158,7 +174,7 @@ writeln('Temperature at start is: ', temp[x, y]);
158174
//this is the main loop of the simulation
159175
var c = 0;
160176
delta = tolerance;
161-
while (c < niter && delta >= tolerance) do
177+
while (c < niter && delta >= tolerance)
162178
{
163179
c += 1;
164180
if (c % outputFrequency == 0)
@@ -170,7 +186,7 @@ while (c < niter && delta >= tolerance) do
170186

171187
```bash
172188
chpl base_solution.chpl
173-
./base_solution.o
189+
./base_solution
174190
```
175191

176192
```output
@@ -207,11 +223,11 @@ Of course the temperature is always 25.0 at any iteration other than the initial
207223
computation yet.
208224

209225
::::::::::::::::::::::::::::::::::::: keypoints
210-
- "Use `if <condition> then {instructions A} else {instructions B}` syntax to execute one set of instructions
226+
- "Use `if <condition> {instructions A} else {instructions B}` syntax to execute one set of instructions
211227
if the condition is satisfied, and the other set of instructions if the condition is not satisfied."
212-
- This syntax can be simplified to `if <condition> then {instructions}` if we only want to execute the
228+
- This syntax can be simplified to `if <condition> {instructions}` if we only want to execute the
213229
instructions within the curly brackets if the condition is satisfied.
214-
- "Use `while <condition> do {instructions}` to repeatedly execute the instructions within the curly brackets
230+
- "Use `while <condition> {instructions}` to repeatedly execute the instructions within the curly brackets
215231
while the condition is satisfied. The instructions will be executed over and over again until the condition
216232
does not hold anymore."
217233
::::::::::::::::::::::::::::::::::::::::::::::::

episodes/05-loops.md

+26-10
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ a given number of elements, the **_for-loop_** is what we want to use. The for-l
2020
syntax:
2121

2222
```chpl
23+
// single-statement version
2324
for index in iterand do
25+
instruction;
26+
27+
// multi-statement version
28+
for index in iterand
2429
{instructions}
25-
```
30+
```
2631

2732
The *iterand* is a function or statement that expresses an iteration; it could be the range 1..15, for
2833
example. *index* is a variable that exists only in the context of the for-loop, and that will be taking the
@@ -35,7 +40,7 @@ This `for` loop, for example
3540

3641
```chpl
3742
// calculate the new temperatures (temp_new) using the past temperatures (temp)
38-
for i in 1..rows do
43+
for i in 1..rows
3944
{
4045
// do this for every row
4146
}
@@ -47,10 +52,10 @@ this:
4752

4853
```chpl
4954
// calculate the new temperatures (temp_new) using the past temperatures (temp)
50-
for i in 1..rows do
55+
for i in 1..rows
5156
{
5257
// do this for every row
53-
for j in 1..cols do
58+
for j in 1..cols
5459
{
5560
// and this for every column in the row i
5661
}
@@ -62,10 +67,10 @@ follows:
6267

6368
```chpl
6469
// calculate the new temperatures (temp_new) using the past temperatures (temp)
65-
for i in 1..rows do
70+
for i in 1..rows
6671
{
6772
// do this for every row
68-
for j in 1..cols do
73+
for j in 1..cols
6974
{
7075
// and this for every column in the row i
7176
temp_new[i,j] = (temp[i-1,j] + temp[i+1,j] + temp[i,j-1] + temp[i,j+1]) / 4;
@@ -78,6 +83,17 @@ Note that at the end of the outer `for` loop, when all the elements in `temp_new
7883
`temp` with the values of `temp_new`; this way everything is set up for the next iteration of the main `while`
7984
statement.
8085

86+
We're ready to execute our code, but the conditions we have initially set up
87+
will not produce interesting output, because the plate has a temperature
88+
value of `25` everywhere. We can change the boundaries to have temperature `0`
89+
so that the middle will start cooling down. To do this, we should change the
90+
declaration of `temp` to:
91+
92+
```chpl
93+
var temp: [0..rows+1, 0..cols+1] real = 0; // the whole plate starts at 0
94+
temp[1..rows,1..cols] = 25; // set the non-boundary coordinates to 25
95+
```
96+
8197
Now let's compile and execute our code again:
8298

8399
```bash
@@ -239,9 +255,9 @@ the job:
239255
```chpl
240256
// update delta, the greatest difference between temp_new and temp
241257
delta=0;
242-
for i in 1..rows do
258+
for i in 1..rows
243259
{
244-
for j in 1..cols do
260+
for j in 1..cols
245261
{
246262
tmp = abs(temp_new[i,j]-temp[i,j]);
247263
if tmp > delta then delta = tmp;
@@ -337,8 +353,8 @@ The greatest difference in temperatures between the last two iterations was: 0.0
337353

338354
::::::::::::::::::::::::::::::::::::: keypoints
339355
- "You can organize loops with `for` and `while` statements. Use a `for` loop to run over every element of the
340-
iterand, e.g. `for i in 1..rows do { ...}` will run over all integers from 1 to `rows`. Use a `while`
356+
iterand, e.g. `for i in 1..rows { ...}` will run over all integers from 1 to `rows`. Use a `while`
341357
statement to repeatedly execute a code block until the condition does not hold anymore, e.g. `while (c <
342-
niter && delta >= tolerance) do {...}` will repeatedly execute the commands in curly braces until one of the
358+
niter && delta >= tolerance) {...}` will repeatedly execute the commands in curly braces until one of the
343359
two conditions turns false."
344360
::::::::::::::::::::::::::::::::::::::::::::::::

episodes/06-procedures.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ procedure and is used to organize the calculations inside the procedure:
6565

6666
```chpl
6767
proc maxOf(x ...?k) { // take a tuple of one type with k elements
68-
var maximum = x[1];
69-
for i in 2..k do maximum = if maximum < x[i] then x[i] else maximum;
68+
var maximum = x[0];
69+
for i in 1..<k do maximum = if maximum < x[i] then x[i] else maximum;
7070
return maximum;
7171
}
7272
```

episodes/12-fire-forget-tasks.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ config var numoftasks=2;
302302
303303
writeln("This is the main task: x = ",x);
304304
305-
coforall taskid in 1..numoftasks do
305+
coforall taskid in 1..numoftasks
306306
{
307307
var c=taskid+1;
308308
writeln("this is task ",taskid,": x + ",taskid," = ",x+taskid,". My value of c is: ",c);
@@ -352,7 +352,7 @@ var messages: [1..numoftasks] string;
352352
353353
writeln("This is the main task: x = ", x);
354354
355-
coforall taskid in 1..numoftasks do {
355+
coforall taskid in 1..numoftasks {
356356
var c = taskid + 1;
357357
messages[taskid] = 'this is task ' + taskid:string +
358358
': my value of c is ' + c:string + ' and x is ' + x:string;
@@ -412,7 +412,7 @@ const r = nelem - n*numtasks; // these elements did not fit into the last thread
412412
413413
var d: [1..numtasks] int; // local maxima for each thread
414414
415-
coforall taskid in 1..numtasks do {
415+
coforall taskid in 1..numtasks {
416416
var i, f: int;
417417
i = (taskid-1)*n + 1;
418418
f = (taskid-1)*n + n;
@@ -430,7 +430,7 @@ chpl --fast exercise_coforall_2.chpl
430430
```
431431

432432
```output
433-
the maximum value in x is: 1.0
433+
the maximum value in x is: 9223372034161572255 # large random integer
434434
```
435435

436436
We use the `coforall` loop to spawn tasks that work concurrently in a fraction of the array. The trick here is to

episodes/13-synchronization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ use the following functions:
227227
```chpl
228228
// non-blocking methods
229229
x.reset() //will set the state as empty and the value as the default of x's type
230-
x.isfull() //will return true is the state of x is full, false if it is empty
230+
x.isFull //will return true is the state of x is full, false if it is empty
231231
232232
//blocking read and write methods
233233
x.writeEF(value) //will block until the state of x is empty,

0 commit comments

Comments
 (0)