-
Notifications
You must be signed in to change notification settings - Fork 11
/
techio.yml
86 lines (82 loc) · 3.17 KB
/
techio.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
title : Introduction to MPI
plan:
- title: Introduction
description: This chapter introduces distributed computing.
plan:
- title: Introduction to distributed computing
statement: markdowns/intro.md
- title: MPI_COMM_WORLD, size and ranks
statement: markdowns/intro_comm_world.md
- title: Hello world
statement: markdowns/intro_hw.md
- title: Point-to-Point communications
description: This chapter introduces synchronous and asynchronous P2P communications.
plan:
- title: Blocking communications
statement: markdowns/p2p_blocking.md
- title: Blocking communications - exercise
statement: markdowns/p2p_blocking_ex.md
- title: MPI_Status retrieval
statement: markdowns/p2p_status.md
- title: Non-blocking communications
statement: markdowns/p2p_non_blocking.md
- title: Non-blocking communications - exercise
statement: markdowns/p2p_non_blocking_ex.md
- title: Race conditions
statement: markdowns/p2p_race_conditions.md
- title: Probing an incoming communication
statement: markdowns/p2p_probing.md
- title: Probing - exercise
statement: markdowns/p2p_probing_ex.md
- title: Communication modes
statement: markdowns/p2p_modes.md
- title: Point-to-point communications - conclusion
statement: markdowns/p2p_conclusion.md
- title: Collective communications
description: This chapter introduces collective communications
plan:
- title: Introduction to collective communications
statement: markdowns/coll_intro.md
- title: Broadcasting
statement: markdowns/coll_bcast.md
- title: Broadcasting - exercise
statement: markdowns/coll_bcast_ex.md
- title: Reductions
statement: markdowns/coll_red.md
- title: Reduction - exercise
statement: markdowns/coll_red_ex1.md
- title: Reduction - exercise 2
statement: markdowns/coll_red_ex2.md
- title: Scattering and Gathering
statement: markdowns/coll_scatter.md
- title: Scattering and Gathering - exercise
statement: markdowns/coll_scatter_ex.md
- title: Collective communications - conclusion
statement: markdowns/coll_conclusion.md
- title: Additional features
description: This chapters goes over the things we did not have time to talk about
plan:
- title: Additional features
statement: markdowns/misc_intro.md
- title: Splitting
statement: markdowns/misc_splitting.md
- title: Splitting - exercise
statement: markdowns/misc_splitting_ex.md
- title: Measuring time
statement: markdowns/misc_time.md
- title: Custom types
statement: markdowns/misc_custom_types.md
- title: Custom types - exercise
statement: markdowns/misc_custom_types_ex.md
- title: A brief overview of the rest of MPI
statement: markdowns/misc_the_rest.md
- title: Conclusion
description: Conclusion chapter
plan:
- title: Conclusion
statement: markdowns/conclusion.md
projects:
main:
root: exercises/
runner:
name: aveuh/gnu-ompi-python3