Skip to content

Commit 80c63bc

Browse files
authored
Merge branch 'main' into fix/ph-issue-3780
2 parents 2db4cee + 5efb99a commit 80c63bc

6 files changed

Lines changed: 9 additions & 8 deletions

File tree

.ci/docker/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pandocfilters==1.5.1
1616
markdown==3.8.2
1717

1818
# PyTorch Theme
19-
pytorch_sphinx_theme2==0.4.6
19+
pytorch_sphinx_theme2==0.4.9
2020

2121
# Tutorial dependencies
2222
tqdm==4.66.1
@@ -34,10 +34,10 @@ bs4
3434
awscliv2==2.1.1
3535
flask
3636
spacy==3.7.1 # Keep this version consistent with the model version in .jenkins/build.sh
37-
ray[serve,train,tune]==2.54.0
37+
ray[serve,train,tune]==2.55.0
3838
tiktoken
3939
tensorboard
40-
jinja2==3.1.3
40+
jinja2==3.1.6
4141
pytorch-lightning
4242
torchx
4343
torchrl==0.10.1

.github/workflows/build-tutorials-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name: Build tutorials (nightly/test)
1515
# download the binaries in .jenkins/build.sh.
1616
on:
1717
# Only main branch for now. Uncomment the below line to enable it on PRs.
18-
# pull_request:
18+
pull_request:
1919

2020
# Comment out the below line to disable on the main branch
2121
push:

.github/workflows/docathon-assign.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
owner: context.repo.owner,
3636
repo: context.repo.repo,
3737
issue_number: issueNumber,
38-
body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)."
38+
body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-2026 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-2026)."
3939
});
4040
} else {
4141
await github.rest.issues.addAssignees({
@@ -46,7 +46,7 @@ jobs:
4646
});
4747
}
4848
} else {
49-
const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)."
49+
const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-2026 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-2026)."
5050
await github.rest.issues.createComment({
5151
owner: context.repo.owner,
5252
repo: context.repo.repo,

beginner_source/basics/tensorqs_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#
6464
# ``shape`` is a tuple of tensor dimensions. In the functions below, it determines the dimensionality of the output tensor.
6565

66-
shape = (2,3,)
66+
shape = (2,3)
6767
rand_tensor = torch.rand(shape)
6868
ones_tensor = torch.ones(shape)
6969
zeros_tensor = torch.zeros(shape)

conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ def wrapper(*args, **kwargs):
203203
html_theme_options = {
204204
"navigation_with_keys": False,
205205
"analytics_id": "GTM-T8XT4PS",
206+
"llm_generate_full": "false",
206207
"logo": {
207208
"text": "",
208209
},

recipes_source/torch_compile_user_defined_triton_kernel_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def add_fn(x, y):
9292
#
9393
# .. note::
9494
#
95-
# ``torch.compile`` only supports configs and key arguments to ``triton.autotune``.
95+
# ``torch.compile`` only supports configs, keys, restore_value, and reset_to_zero arguments to ``triton.autotune``.
9696

9797
if not has_triton():
9898
print("Skipping because triton is not supported on this device.")

0 commit comments

Comments
 (0)