forked from RuyiAI-Stack/ruyiai-stack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
89 lines (84 loc) · 3.57 KB
/
tutorial.html
File metadata and controls
89 lines (84 loc) · 3.57 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>使用教程 - Ruyi AI</title>
<meta name="description" content="Ruyi AI 使用教程" />
<link rel="icon" href="./assets/logo-ruyi-nav.png" type="image/png" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<!-- Top Nav -->
<header class="nav">
<div class="nav__inner">
<a class="brand" href="index.html">
<img class="brand__logo" src="./assets/logo-ruyi-title.svg" alt="Ruyi AI" />
</a>
<button class="nav__toggle" type="button" id="navToggle" aria-label="菜单" aria-expanded="false">
<span class="nav__toggle-bar"></span>
<span class="nav__toggle-bar"></span>
<span class="nav__toggle-bar"></span>
</button>
<div class="nav__menu-wrap">
<nav class="nav__links">
<a href="index.html">首页</a>
<div class="nav__dropdown">
<button class="nav__dropbtn" type="button" aria-haspopup="true" aria-expanded="false">
项目 <span class="nav__chev" aria-hidden="true"></span>
</button>
<div class="nav__menu" role="menu">
<a role="menuitem" href="docs.html#compiler" class="nav__menuitem">
<span class="nav__menuitem-title">Ruyi AI 编译器</span>
<span class="nav__menuitem-desc">基于 MLIR 桥接 PyTorch 和 RISC-V</span>
</a>
<a role="menuitem" href="docs.html#operator-lang" class="nav__menuitem">
<span class="nav__menuitem-title">Ruyi AI 算子编程语言</span>
<span class="nav__menuitem-desc">面向 RISC-V 适配 Triton / TileLang</span>
</a>
<a role="menuitem" href="docs.html#operator-lib" class="nav__menuitem">
<span class="nav__menuitem-title">Ruyi AI 算子库</span>
<span class="nav__menuitem-desc">面向 RISC-V 的原生高性能算子库</span>
</a>
<a role="menuitem" href="docs.html#runtime" class="nav__menuitem">
<span class="nav__menuitem-title">Ruyi AI 运行时环境</span>
<span class="nav__menuitem-desc">面向 RISC-V 各类扩展的统一运行时环境</span>
</a>
</div>
</div>
<a href="docs.html#contributor-guide">贡献</a>
<a href="docs.html">文档</a>
<a href="https://ruyisdk.cn/" target="_blank" rel="noopener noreferrer">社区</a>
<a href="docs.html#about">关于</a>
</nav>
<div class="nav__actions">
<a class="nav__github" href="https://github.com/RuyiAI-Stack" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
GitHub
<span class="nav__external" aria-hidden="true">↗</span>
</a>
</div>
</div>
</div>
</header>
<main class="page">
<section class="hero">
<div class="hero__left">
<h1 class="h1">使用教程</h1>
<p class="lead">
Ruyi AI 使用教程与示例。(内容待补充)
</p>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__inner">
<span>© <span id="year"></span> Ruyi AI</span>
<span class="sep">·</span>
<a href="#privacy">Privacy</a>
<span class="sep">·</span>
<a href="#terms">Terms</a>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>