Skip to content

Commit cb73bf2

Browse files
author
Svetlana Karslioglu
authored
Merge branch 'master' into patch-1
2 parents c6181e5 + 5439a4e commit cb73bf2

12 files changed

+1552
-1148
lines changed

.devcontainer/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ipython
2424
# to run examples
2525
pandas
2626
scikit-image
27-
pillow==9.0.1
27+
pillow==9.3.0
2828
wget
2929

3030
# for codespaces env

.jenkins/validate_tutorials_built.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"recipes/profiler_recipe",
4040
"recipes/save_load_across_devices",
4141
"recipes/warmstarting_model_using_parameters_from_a_different_model",
42-
"dynamo_tutorial",
42+
"torch_compile_tutorial_",
4343
"recipes/dynamic_quantization",
4444
"recipes/saving_and_loading_a_general_checkpoint",
4545
"recipes/benchmark",

beginner_source/translation_transformer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def tensor_transform(token_ids: List[int]):
266266
tensor_transform) # Add BOS/EOS and create tensor
267267

268268

269-
# function to collate data samples into batch tesors
269+
# function to collate data samples into batch tensors
270270
def collate_fn(batch):
271271
src_batch, tgt_batch = [], []
272272
for src_sample, tgt_sample in batch:

index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,10 +519,10 @@ What's new in PyTorch tutorials?
519519
:tags: Model-Optimization,Best-Practice,Ax,TorchX
520520

521521
.. customcarditem::
522-
:header: TorchDynamo and TorchInductor Tutorial
523-
:card_description: Speed up your models with minimal code changes using TorchDynamo and TorchInductor, the latest PyTorch compiler solution.
522+
:header: torch.compile Tutorial
523+
:card_description: Speed up your models with minimal code changes using torch.compile, the latest PyTorch compiler solution.
524524
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
525-
:link: intermediate/dynamo_tutorial.html
525+
:link: intermediate/torch_compile_tutorial.html
526526
:tags: Model-Optimization
527527

528528
.. Parallel-and-Distributed-Training
@@ -909,7 +909,7 @@ Additional Resources
909909
intermediate/torchserve_with_ipex_2
910910
intermediate/nvfuser_intro_tutorial
911911
intermediate/ax_multiobjective_nas_tutorial
912-
intermediate/dynamo_tutorial
912+
intermediate/torch_compile_tutorial
913913

914914
.. toctree::
915915
:maxdepth: 2

0 commit comments

Comments
 (0)