Skip to content

Commit b2d2891

Browse files
patmellonbrsoff
authored andcommitted
[PYT-194] Separate out Features copy (#56)
1 parent fc32838 commit b2d2891

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

_features/cloud-partners.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
summary: Get up and running quickly with PyTorch through cloud platforms for training and inference.
1718
---
1819

1920
Get up and running quickly with PyTorch through cloud platforms for training and inference.

_features/distributed-training.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
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++.
1718
---
1819

1920
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
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.
1718
---
1819

1920
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/native-onnx-support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
summary: Export models in the standard ONNX (Open Neural Network Exchange) format for direct access to ONNX-compatible platforms, runtimes, visualizers, and more.
1718
---
1819

1920
Export models in the standard ONNX (Open Neural Network Exchange) format for direct access to ONNX-compatible platforms, runtimes, visualizers, and more.

_features/python-first.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
summary: Deep integration into Python allows popular libraries and packages to be used, while a new pure C++ interface (beta) enables performance-critical research.
1718
---
1819

1920
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ snippet: >
1414
a = a + 1
1515
print()
1616
```
17+
summary: Access a rich ecosystem of tools and libraries to extend PyTorch and support development in areas from computer vision to reinforcement learning.
1718
---
1819

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

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2>Key Features &amp;<br />Capabilities</h2>
3535
{% for feature in features %}
3636
<div class="col-md-3 key-feature-box">
3737
<h5>{{ feature.title }}</h5>
38-
{{ feature.content }}
38+
<p>{{ feature.summary }}</p>
3939
</div>
4040
{% endfor %}
4141
</div>

0 commit comments

Comments
 (0)