-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path_quarto.yml
More file actions
152 lines (143 loc) · 4.24 KB
/
_quarto.yml
File metadata and controls
152 lines (143 loc) · 4.24 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
project:
type: website
title: "PythonCK Documentation"
output-dir: _site
resources:
- "pythonck-0.2.0-py3-none-any.whl"
extensions: [r-wasm/live]
highlight-style: a11y
website:
title: "PythonCK Documentation"
site-url: https://ghamarian.github.io/pythonck
repo-url: https://github.com/ghamarian/pythonck
repo-actions: [edit, issue]
page-navigation: true
bread-crumbs: true
search:
show-item-context: true
type: overlay
page-footer:
left: |
Part of the **PythonCK** tensor computation framework
center:
- text: "License"
href: https://github.com/ghamarian/pythonck/blob/master/LICENSE
right:
- icon: github
href: https://github.com/ghamarian/pythonck
aria-label: PythonCK GitHub
navbar:
background: primary
title: "PythonCK"
logo-alt: "PythonCK Documentation"
collapse-below: lg
left:
- text: "Home"
href: index.qmd
sidebar:
- id: main
style: "docked"
collapse-level: 2
align: left
contents:
- section: "Getting Started"
contents:
- index.qmd
- text: "Quick Start Tutorial"
href: concepts/00_introduction_motivation.qmd
- section: "GPU Hardware"
contents:
- hardware/00_gpu_basics.qmd
- hardware/01_lds.qmd
- hardware/02_gemm.qmd
- section: "Foundation"
contents:
- text: "Buffer Views"
href: concepts/01_buffer_view.qmd
- text: "Tensor Views"
href: concepts/01_tensor_view.qmd
- section: "Transformation Engine"
contents:
- text: "Tensor Coordinates"
href: concepts/02_tensor_coordinates.qmd
- text: "Individual Transforms"
href: concepts/02_transforms.qmd
- text: "Chaining Adaptors"
href: concepts/02_adaptors.qmd
- text: "Complete Descriptors"
href: concepts/02_descriptors.qmd
- section: "Examples"
contents:
- text: "Convolution Implementation"
href: concepts/02_convolution_example.qmd
- text: "Coordinate Movement"
href: concepts/02_coordinate_movement.qmd
- text: "LDS index swapping"
href: concepts/02_lds_index_swapping.qmd
- section: "Distribution API"
contents:
- text: "Tile Distribution"
href: concepts/03_tile_distribution.qmd
- text: "Space Filling Curve"
href: concepts/03_space_filling_curve.qmd
- text: "LoadStoreTraits"
href: concepts/03_load_store_traits.qmd
- text: "Tile Window"
href: concepts/03_tile_window.qmd
- text: "Sweep Tile"
href: concepts/03_sweep_tile.qmd
- section: "Advanced Topics"
contents:
- text: "Coordinate Systems"
href: concepts/04_coordinate_systems.qmd
- text: "Encoding Internals"
href: concepts/05_encoding_internals.qmd
- text: "Static Distributed Tensor"
href: concepts/05_static_distributed_tensor.qmd
- text: "Thread Mapping"
href: concepts/06_thread_mapping.qmd
- section: "Reference"
contents:
- text: "Terminology"
href: concepts/terminology.qmd
format:
live-html:
theme:
light: [cosmo, custom-theme.scss]
toc: true
toc-depth: 3
code-tools:
source: true
toggle: false
caption: none
code-copy: true
code-overflow: wrap
anchor-sections: true
smooth-scroll: true
execute:
eval: false
link-external-newwindow: true
mermaid:
theme: default
css:
- global-font-override.css
- diagram-sizing-fixes.css
- cpp-only-enhancement.css
include-in-header:
- mermaid-include.html
include-after-body:
- text: |
<script src="/font-cleanup.js"></script>
grid:
sidebar-width: 280px
body-width: 900px
margin-width: 320px
pyodide:
packages:
- numpy
- pandas
- sympy
- micropip
cell-options:
autorun: false
freeze: false