Skip to content

Commit e4b8c53

Browse files
authored
Merge branch 'main' into update-privateuseone-python-backend
2 parents b39933f + 5efb99a commit e4b8c53

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

.ci/docker/requirements.txt

Lines changed: 1 addition & 1 deletion
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

.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:

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)