-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsidebars-tutorials.js
More file actions
67 lines (67 loc) · 1.87 KB
/
Copy pathsidebars-tutorials.js
File metadata and controls
67 lines (67 loc) · 1.87 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
module.exports = {
tutorials: [
"overview",
{
type: "category",
label: "Labs",
collapsed: false,
link: {
type: "generated-index",
title: "Labs",
description: "Step-by-step exercises with real captured outputs.",
},
items: [
{
type: "doc",
id: "labs/online-install",
customProps: { level: "Beginner", duration: "about 60 minutes" },
},
{
type: "doc",
id: "labs/local-fake-gpu",
customProps: { level: "Beginner", duration: "about 30 minutes" },
},
{
type: "doc",
id: "labs/gpu-partitioning",
customProps: { level: "Intermediate", duration: "about 30 minutes" },
},
{
type: "doc",
id: "labs/hami-dra",
customProps: { level: "Advanced", duration: "about 45 minutes" },
},
{
type: "doc",
id: "labs/nvml-mock",
customProps: { level: "Intermediate", duration: "about 40 minutes" },
},
{
type: "doc",
id: "labs/hami-vllm",
customProps: { level: "Intermediate", duration: "about 45 minutes" },
},
{
type: "doc",
id: "labs/hami-isolation-k3s",
customProps: { level: "Intermediate", duration: "about 45 minutes" },
},
{
type: "doc",
id: "labs/volcano-vgpu-gang-queue",
customProps: { level: "Advanced", duration: "about 60 minutes" },
},
{
type: "doc",
id: "labs/kueue-hami-vgpu",
customProps: { level: "Advanced", duration: "about 60 minutes" },
},
{
type: "doc",
id: "labs/topology-aware-scheduling",
customProps: { level: "Intermediate", duration: "about 45 minutes" },
},
],
},
],
};