Skip to content

Commit 007a371

Browse files
patmellonbrsoff
authored andcommitted
[PYT-198] Limit features on homepage (pytorch#57)
1 parent b2d2891 commit 007a371

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

_features/distributed-training.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ snippet: >
1515
print()
1616
```
1717
summary: Take advantage of native support for asynchronous execution of collective operations and peer-to-peer communication that is accessible from both Python and C++.
18+
featured: true
1819
---
1920

2021
Take advantage of native support for asynchronous execution of collective operations and peer-to-peer communication that is accessible from both Python and C++.

_features/hybrid-front-end.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ snippet: >
1515
print()
1616
```
1717
summary: A new hybrid front-end provides ease-of-use and flexibility in eager mode, while seamlessly transitioning to graph mode for speed, optimization, and functionality in C++ runtime environments.
18+
featured: true
1819
---
1920

2021
A new hybrid front-end provides ease-of-use and flexibility in eager mode, while seamlessly transitioning to graph mode for speed, optimization, and functionality in C++ runtime environments.

_features/python-first.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ snippet: >
1515
print()
1616
```
1717
summary: Deep integration into Python allows popular libraries and packages to be used, while a new pure C++ interface (beta) enables performance-critical research.
18+
featured: true
1819
---
1920

2021
Deep integration into Python allows popular libraries and packages to be used, while a new pure C++ interface (beta) enables performance-critical research.

_features/tools-libraries.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ snippet: >
1515
print()
1616
```
1717
summary: Access a rich ecosystem of tools and libraries to extend PyTorch and support development in areas from computer vision to reinforcement learning.
18+
featured: true
1819
---
1920

2021
Access a rich ecosystem of tools and libraries to extend PyTorch and support development in areas from computer vision to reinforcement learning.

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2>Key Features &amp;<br />Capabilities</h2>
3030
</div>
3131

3232
<div class="row key-features-boxes">
33-
{% assign features = site.features | sort: 'order' %}
33+
{% assign features = site.features | where: "featured", true | sort: 'order' %}
3434

3535
{% for feature in features %}
3636
<div class="col-md-3 key-feature-box">

0 commit comments

Comments
 (0)