Skip to content

Commit ea4e155

Browse files
authored
Merge branch 'main' into 2.7-RC-TEST
2 parents 6e3f90a + 7cb6915 commit ea4e155

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

Diff for: .github/workflows/build-tutorials.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- { shard: 4, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
2323
- { shard: 5, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
2424
- { shard: 6, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
25-
- { shard: 7, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
26-
- { shard: 8, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
27-
- { shard: 9, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
28-
- { shard: 10, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
29-
- { shard: 11, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
30-
- { shard: 12, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
31-
- { shard: 13, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
32-
- { shard: 14, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
33-
- { shard: 15, num_shards: 15, runner: "linux.4xlarge.nvidia.gpu" }
25+
- { shard: 7, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
26+
- { shard: 8, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
27+
- { shard: 9, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
28+
- { shard: 10, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
29+
- { shard: 11, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
30+
- { shard: 12, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
31+
- { shard: 13, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
32+
- { shard: 14, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
33+
- { shard: 15, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
3434
fail-fast: false
3535
runs-on: ${{ matrix.runner }}
3636
steps:

Diff for: .jenkins/validate_tutorials_built.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"intermediate_source/dqn_with_rnn_tutorial", # reenable after 3302 is fixed
5858
"advanced_source/pendulum", # reenable after 3302 is fixed
5959
"advanced_source/coding_ddpg", # reenable after 3302 is fixed
60-
"intermediate_source/torchrec_intro_tutorial" # reenable after 3302 is fixed
60+
"intermediate_source/torchrec_intro_tutorial", # reenable after 3302 is fixed
61+
"recipes_source/recipes/reasoning_about_shapes" # reenable after 3326 is fixed
6162
]
6263

6364
def tutorial_source_dirs() -> List[Path]:

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All the tutorials are now presented as sphinx style documentation at:
77

88
# Asking a question
99

10-
If you hve a qestion about a tutorial, post in https://dev-discuss.pytorch.org/ rather than creating an issue in this repo. Your question will be answered much faster on the dev-discuss forum.
10+
If you have a question about a tutorial, post in https://dev-discuss.pytorch.org/ rather than creating an issue in this repo. Your question will be answered much faster on the dev-discuss forum.
1111

1212
# Submitting an issue
1313

Diff for: _templates/layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@
211211

212212
<img height="1" width="1" style="border-style:none;" alt="" src="https://www.googleadservices.com/pagead/conversion/795629140/?label=txkmCPmdtosBENSssfsC&amp;guid=ON&amp;script=0"/>
213213

214-
//temporarily add a link to survey
215214
<script>
215+
//temporarily add a link to survey
216216
var survey = '<div class="survey-banner"><p><i class="fas fa-poll" aria-hidden="true">&nbsp </i> Take the <a href="https://forms.gle/KZ4xGL65VRMYNbbG6">PyTorch Docs/Tutorials survey</a>.</p></div>'
217217
if ($(".pytorch-call-to-action-links").length) {
218218
$(".pytorch-call-to-action-links").before(survey);

Diff for: intermediate_source/torch_compile_tutorial.py

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
# - ``numpy``
3131
# - ``scipy``
3232
# - ``tabulate``
33+
#
34+
# **System Requirements**
35+
# - A C++ compiler, such as ``g++``
36+
# - Python development package (``python-devel``/``python-dev``)
3337

3438
######################################################################
3539
# NOTE: a modern NVIDIA GPU (H100, A100, or V100) is recommended for this tutorial in

0 commit comments

Comments
 (0)