-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathdomains.html
More file actions
56 lines (51 loc) ยท 2.15 KB
/
domains.html
File metadata and controls
56 lines (51 loc) ยท 2.15 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
---
layout: default
title: Domain APIs | PyTorchKR
permalink: domains/
body-class: domains
---
{% assign domains = site.domains | sort: 'order' %}
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1>๋๋ฉ์ธ API(Domain API)</h1>
<p class="lead">ํ์ดํ ์น ์ํ๊ณ(PyTorch Ecosystem)์ ๋ค์ํ Domain Library๋ฅผ ๋ง๋๋ณด์ธ์!<br />
ํน์ ์์ญ์ ์ต์ ํ๋ ๋๊ตฌ๋ค๊ณผ ์ฌ์ ํ์ต๋ ๋ชจ๋ธ ๋ฑ์ ์ ๊ณตํ๊ณ ์์ต๋๋ค.</p>
</div>
</div>
<div class="main-content-wrapper">
<div class="main-content">
<div class="container">
<div class="row domains">
<p>๐ก PyTorch ๋ฒ์ ๋ณ Domain Library ํธํ์ฑ์ <a href="/get-started/compatibility/">PyTorch ๋ฒ์ ํธํ์ฑ</a> ๋ฌธ์๋ฅผ ์ฐธ๊ณ ํด์ฃผ์ธ์.</p>
{% for domain in domains %}
<div class="col-md-4">
<div class="card domain-card">
<a href="{{ domain.link }}" target="_blank">
<div class="card-body">
<h4>
{% if domain.title_prefix and domain.title_suffix %}
{% if domain.title == 'PyTorch on XLA Devices' %}
<span class="domain-suffix">{{ domain.title_prefix }}</span> <span class="domain-prefix">{{ domain.title_suffix }}</span>
{% elsif domain.title == 'Functorch' %}
<span class="domain-suffix">{{ domain.title_prefix }}</span><span class="domain-prefix">{{ domain.title_suffix }}</span>
{% else %}
<span class="domain-prefix">{{ domain.title_prefix }}</span><span class="domain-suffix">{{ domain.title_suffix }}</span>
{% endif %}
{% else %}
{{ domain.title }}
{% endif %}
</h4>
{% unless resource.link contains 'pytorch.kr' %}
<i class="fa fa-external-link external-link-icon"></i>
{% endunless %}
<p class="card-summary">{{ domain.summary }}</p>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>