Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7c0e4a

Browse files
authored
Merge branch 'site' into 8-24
2 parents 8bc3505 + 7c47bcb commit e7c0e4a

File tree

5 files changed

+48
-2
lines changed

5 files changed

+48
-2
lines changed

_mobile/android.md

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ order: 3
88
published: true
99
---
1010

11+
<div class="note-card">
12+
<h4>Note</h4>
13+
<p>PyTorch Mobile is no longer actively supported. Please check out <a href="/executorch-overview">ExecuTorch</a>, PyTorch’s all-new on-device inference library. You can also review <a href="https://pytorch.org/executorch/stable/demo-apps-android.html">this page</a> to learn more about how to use ExecuTorch to build an Android app.</p>
14+
</div>
15+
1116
# Android
1217

1318
## Quickstart with a HelloWorld Example

_mobile/home.md

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ published: true
99
redirect_from: "/mobile/"
1010
---
1111

12+
<div class="note-card">
13+
<h4>Note</h4>
14+
<p>PyTorch Mobile is no longer actively supported. Please check out <a href="/executorch-overview">ExecuTorch</a>, PyTorch’s all-new on-device inference library. </p>
15+
</div>
16+
1217
# PyTorch Mobile
1318

1419
There is a growing need to execute ML models on edge devices to reduce latency, preserve privacy, and enable new interactive use cases.

_mobile/ios.md

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ order: 2
88
published: true
99
---
1010

11+
<div class="note-card">
12+
<h4>Note</h4>
13+
<p>PyTorch Mobile is no longer actively supported. Please check out <a href="/executorch-overview">ExecuTorch</a>, PyTorch’s all-new on-device inference library. You can also review <a href="https://pytorch.org/executorch/stable/demo-apps-ios.html">this page</a> to learn more about how to use ExecuTorch to build an iOS app.</p>
14+
</div>
15+
1116
# iOS
1217

1318
To get started with PyTorch on iOS, we recommend exploring the following [HelloWorld](https://github.com/pytorch/ios-demo-app/tree/master/HelloWorld).

_posts/2023-06-07-join-pytorch.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ Being a part of the PyTorch Foundation grants opportunities to help build the fu
2929

3030
## How to join
3131

32-
Premier members [must submit an application ](https://docs.google.com/forms/d/1JVzFIaFu-El5Ug0IlzpHKwPbZLe9MvaAUXl0FZgnNQw/edit)to be considered for board level membership. General and associate members are welcome to [join automatically](https://enrollment.lfx.linuxfoundation.org/?project=pytorch). See below for specific tiering and details on each type of membership.
32+
Commercial organizations are invited to apply for General membership, while non-profits and academic institutions are encouraged to apply for Associate membership.
3333

3434
### Premier Members
3535

36-
Premier members are the highest tier. They will appoint one voting representative in any subcommittees or activities of the PTF Governing Board, and receive prominent placement in displays of membership including website, landscape and marketing materials, exclusive live webinars with PyTorch online programs and everything included within a “general” membership. The annual fee is $150,000 + an LF Silver Membership.
36+
Organizations are welcome to submit an application to be considered as a Premier member. Premier members are the highest tier. They will appoint one voting representative in any subcommittees or activities of the PTF Governing Board, and receive prominent placement in displays of membership including website, landscape and marketing materials, exclusive live webinars with PyTorch online programs and everything included within a “general” membership. The annual fee is $150,000 + an LF Silver Membership.
3737

3838
### General Members
3939

_sass/base_styles.scss

+31
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,37 @@ a, .btn {
463463
}
464464
}
465465

466+
article.pytorch-article .note-card {
467+
border-radius: 0;
468+
border: none;
469+
background-color: $orange;
470+
color: white;
471+
padding: 30px;
472+
margin-bottom: 50px;
473+
474+
h4 {
475+
font-size: 1.5rem;
476+
letter-spacing: 1.33px;
477+
line-height: 2rem;
478+
text-transform: uppercase;
479+
color: white;
480+
margin-top: 0;
481+
margin-bottom: rem(18px);
482+
}
483+
484+
p {
485+
font-size: rem(18px);
486+
line-height: 1.5em;
487+
margin-bottom: 0;
488+
color: white;
489+
a {
490+
color: white;
491+
font-weight: 700;
492+
}
493+
}
494+
495+
}
496+
466497
.ecosystem-card,
467498
.resource-card,
468499
.hub-card {

0 commit comments

Comments
 (0)