File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ pydantic>=2.10
2525fastapi
2626matplotlib
2727librosa
28- torch == 2.10
28+ torch == 2.11
2929torchvision
3030torchdata
3131networkx
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ name: Build tutorials (nightly/test)
1515# download the binaries in .jenkins/build.sh.
1616on :
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
21- push :
22- branches :
23- - main
21+ # push:
22+ # branches:
23+ # - main
2424 workflow_dispatch :
2525
2626concurrency :
Original file line number Diff line number Diff line change @@ -237,6 +237,13 @@ def wrapper(*args, **kwargs):
237237 "pytorch_project" : "tutorials" ,
238238 "llm_disabled" : False ,
239239 "canonical_url" : "https://docs.pytorch.org/tutorials/" ,
240+ # Announcement Banner Configuration
241+ "announcement_banner" : {
242+ "text" : "Help us understand how you use PyTorch! Take our quick survey." ,
243+ "url" : "https://docs.google.com/forms/d/e/1FAIpQLSfsGAWBcfutRcbO6kfrShBMOMmRuBezRjjOcXk0e9I9luBzvQ/viewform" ,
244+ "link_text" : "Take Survey" ,
245+ "dismissible" : True ,
246+ },
240247}
241248
242249theme_variables = pytorch_sphinx_theme2 .get_theme_variables ()
Original file line number Diff line number Diff line change @@ -3,11 +3,13 @@ Welcome to PyTorch Tutorials
33
44**What's new in PyTorch tutorials? **
55
6+ * `Distributed Training with Ray Train <https://docs.pytorch.org/tutorials/beginner/distributed_training_with_ray_tutorial.html >`__
7+ * `Serve PyTorch models at scale with Ray Serve <https://docs.pytorch.org/tutorials/beginner/serving_tutorial.html >`__
8+ * `Hyperparameter tuning using Ray Tune <https://docs.pytorch.org/tutorials/beginner/hyperparameter_tuning_tutorial.html >`__
69* `Memory Profiling with Mosaic <https://docs.pytorch.org/tutorials/beginner/mosaic_memory_profiling_tutorial.html >`__
710* `Using Variable Length Attention in PyTorch <https://docs.pytorch.org/tutorials/intermediate/variable_length_attention_tutorial.html >`__
811* `DebugMode: Recording Dispatched Operations and Numerical Debugging <https://docs.pytorch.org/tutorials/recipes/debug_mode_tutorial.html >`__
9- * `[Updated] Custom SYCL Operators <https://docs.pytorch.org/tutorials/advanced/cpp_custom_ops_sycl.html >`__
10- * `[Updated] Custom C++ and CUDA Operators <https://docs.pytorch.org/tutorials/advanced/cpp_custom_ops.html >`__
12+
1113
1214
1315.. raw :: html
You can’t perform that action at this time.
0 commit comments