-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
executable file
·189 lines (176 loc) · 5.54 KB
/
sidebars.js
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// import Translate from '@docusaurus/Translate'
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// main: [{ type: "autogenerated", dirName: "." }],
// But you can create a sidebar manually
main: [
"welcome",
"introduction",
"installation",
{
type: "category",
label: "Quick Start",
items: [
"quick_start_new_user",
//"quick_start_professional",
{
type: "category",
label: "Contribution Guidelines",
items: ["contribution_guide/modify_the_code",
"contribution_guide/modify_the_doc",
"contribution_guide/statement",
"contribution_guide/communicate",],
link: {
type: "doc",
id:"contribution",
},
},
],
link: {
type: "generated-index",
title: "Quick Start",
description: "This section provides a comprehensive Quick Start guide for users who are new to the torchpipe project. By following this tutorial, users will be able to quickly and efficiently learn how to use torchpipe to optimize and accelerate their model deployment process, ultimately streamlining their workflow and enhancing their productivity.",
slug: "/",
},
},
{
type: "category",
label: "1. Preliminary",
items: [
"preliminaries/cuda_stream",
"preliminaries/pytorch_libtorch",
"preliminaries/thread_process_gil",
"preliminaries/rpc",
],
link: {
type: "generated-index",
title: "Preliminary",
description: "Feel free to skim or skip over this section and refer back to it as needed.",
slug: "/preliminaries",
},
},
{
type: "category",
label: "2. Single Node Scheduling",
items: [
"Intra-node/model_parallel",
"Intra-node/computational_backend",
"Intra-node/Sequential",
"Intra-node/extensible_backend",
{
type: "category",
label: "Backend API Reference",
// items: ["backend-reference/basic", "backend-reference/opencv", "backend-reference/torch"],
items: [{type:"ref", id:"backend-reference/basic"}, {type:"ref", id:"backend-reference/opencv"},{type:"ref", id:"backend-reference/torch"},],
},
// {
// type: "category",
// label: "Backend API Reference",
// items: ["backend-reference/basic", "backend-reference/opencv", "backend-reference/torch"],
// link: {
// type: "generated-index",
// title: "Backend API Reference",
// description: "here is backend-reference",
// slug: "/backend-reference",
// },
// },
"Intra-node/schedule",
],
link: {
type: "generated-index",
title: "Single Node Scheduling",
description: "In this section we utilizes intra-node parallelism to improve processing speed",
slug: "/Intra-node",
},
},
{
type: "category",
label: "3. Multi-node Pipeline",
items: ["Inter-node/next","Inter-node/filter","Inter-node/context","Inter-node/graphtraversal", "Inter-node/logical_nodes" ],
link: {
type: "generated-index",
title: "Multi-node Pipeline",
description: "This chapter utilizes inter-node scheduling and parallel computing to effectively parallelize task scheduling and logical control flow, thereby improving processing speed.",
slug: "/Inter-node",
},
},
{
type: "category",
label: "4. Tools",
items: [
"tools/encrypt",
"tools/quantization",
"tools/training",
"tools/vis",
],
link: {
type: "generated-index",
title: "工具",
description: "extension tools related to torchpipe",
slug: "/tools",
keywords: ["training", "vis", "debug"],
},
},
// "backend",
// "batching-and-multiple-sinstances",
// "pipeline",
"benchmark",
{
type: "category",
label: "FAQ",
items: [
"faq/onnx",
"faq/consistency",
"faq/remote-gdb"
],
link: {
type: "generated-index",
title: "FAQ",
description: "Frequently asked questions about torchpipe",
slug: "/faq",
keywords: ["onnx", "faq"],
},
},
"troubleshooting",
],
api: [
{
type: "category",
label: "Python API Reference",
items: ["python/pipe","python/compile","python/test"],
},
{
type: "category",
label: "Backend API Reference",
items: ["backend-reference/basic",
"backend-reference/opencv",
"backend-reference/torch",
"backend-reference/Ppl.cv",
"backend-reference/CVCUDA",
"backend-reference/log"],
},
"Intra-node/schedule",
"cpp-python/basic",
// {
// type: "category",
// label: "c++/pythonType Conversion",
// items: ["cpp-python/basic"],
// },
// "installation",
// "introduction",
],
// showcase: [
// "showcase"
// ],
};
module.exports = sidebars;