-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
89 lines (73 loc) · 2.36 KB
/
mkdocs.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
87
88
89
site_name: Zefiros-BSPLib
site_url: http://www.bsplib.eu
repo_url: https://github.com/Zefiros-Software/BSPLib
site_description: BSPLib a fast and easy to use parallel computation libary.
theme: united
copyright: Copyright © 2017 Zefiros Software
google_analytics: ['UA-29999374-2', 'www.bsplib.eu']
theme:
name: null
custom_dir: 'docs/style'
pages:
- BSP:
- 'index.md'
- Classic: 'classic.md'
- Program:
- Logic:
- 'Execute BSP Kernel': 'logic/execute.md'
- 'Init BSP Kernel': 'logic/init.md'
- 'Begin BSP Kernel': 'logic/begin.md'
- 'End BSP Kernel': 'logic/end.md'
- Halting:
- 'Abort Program': 'halting/abort.md'
- Util:
- 'Processor Count': 'util/nprocs.md'
- 'Processor Identifier': 'util/procid.md'
- 'Wall Time': 'util/time.md'
- (De)registration:
- 'Push Register': 'regdereg/push.md'
- 'Pop Register': 'regdereg/pop.md'
- Communication:
- 'Get Register':
- 'Normal': 'com/get.md'
- 'Primitives' : 'com/getPrimitive.md'
- 'Pointers' : 'com/getPtrs.md'
- 'Containers' : 'com/getContainer.md'
- 'Put Register':
- 'Normal': 'com/put.md'
- 'Primitives' : 'com/putPrimitive.md'
- 'Pointers' : 'com/putPtrs.md'
- 'Containers' : 'com/putContainer.md'
- Sync Point:
- 'Synchronising': 'sync/sync.md'
- Messaging:
- Send Memory:
- 'Normal': 'messaging/send.md'
- 'Primitives' : 'messaging/sendPrimitive.md'
- 'Iterators' : 'messaging/sendIterator.md'
- 'Containers' : 'messaging/sendContainer.md'
- 'Pointers - Primitives' : 'messaging/sendPtrs.md'
- 'Pointers - Containers' : 'messaging/sendTagContainer.md'
- 'Move Memory': 'messaging/move.md'
- 'Get Queue Size': 'messaging/qsize.md'
- Utilities:
- 'Get Tag': 'messagingutil/gettag.md'
- 'Set Tag Size': 'messagingutil/settagsize.md'
#- High Performance:
# - 'Get Register': 'hp/hpget.md'
# - 'Put Register': 'hp/hpput.md'
# - 'Send Memory': 'hp/hpsend.md'
# - 'Move Memory': 'hp/hpmove.md'
extra_css:
- 'style/docs.css'
extra_javascript:
- 'style/mathjax-loader.js'
markdown_extensions:
- toc:
permalink: True
separator: "_"
- admonition
- sane_lists
- pymdownx.arithmatex
- pymdownx.magiclink
- markdown_checklist.extension