File tree Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ tqdm==4.66.1
13
13
numpy == 1.24.4
14
14
matplotlib
15
15
librosa
16
- torch == 2.3
16
+ torch == 2.4
17
17
torchvision
18
18
torchtext
19
19
torchdata
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ sudo apt-get install -y pandoc
22
22
# Install PyTorch Nightly for test.
23
23
# Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html
24
24
# Install 2.4 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed).
25
- pip uninstall -y torch torchvision torchaudio torchtext torchdata
26
- pip3 install torch==2.4.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
25
+ # pip uninstall -y torch torchvision torchaudio torchtext torchdata
26
+ # pip3 install torch==2.4.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
27
27
28
28
# Install two language tokenizers for Translation with TorchText tutorial
29
29
python -m spacy download en_core_web_sm
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ Welcome to PyTorch Tutorials
3
3
4
4
**What's new in PyTorch tutorials? **
5
5
6
- * `Using User-Defined Triton Kernels with torch.compile <https://pytorch.org/tutorials/recipes/torch_compile_user_defined_triton_kernel_tutorial .html >`__
7
- * `Large Scale Transformer model training with Tensor Parallel (TP) <https://pytorch.org/tutorials/intermediate/TP_tutorial .html >`__
8
- * `Accelerating BERT with semi-structured (2:4) sparsity <https://pytorch.org/tutorials/advanced/semi_structured_sparse .html >`__
9
- * `torch.export Tutorial with torch.export.Dim <https://pytorch.org/tutorials/intermediate/torch_export_tutorial .html >`__
10
- * ` Extension points in nn.Module for load_state_dict and tensor subclasses <https://pytorch.org/tutorials/recipes/recipes/swap_tensors .html >`__
6
+ * `Introduction to Distributed Pipeline Parallelism <https://pytorch.org/tutorials/intermediate/pipelining_tutorial .html >`__
7
+ * `Introduction to Libuv TCPStore Backend <https://pytorch.org/tutorials/intermediate/TCPStore_libuv_backend .html >`__
8
+ * `Asynchronous Saving with Distributed Checkpoint (DCP) <https://pytorch.org/tutorials/recipes/distributed_async_checkpoint_recipe .html >`__
9
+ * `Python Custom Operators <https://pytorch.org/tutorials/advanced/python_custom_ops .html >`__
10
+ * Updated ` Getting Started with DeviceMesh <https://pytorch.org/tutorials/recipes/distributed_device_mesh .html >`__
11
11
12
12
.. raw :: html
13
13
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ Introduction to Libuv TCPStore Backend
8
8
.. grid :: 2
9
9
10
10
.. grid-item-card :: :octicon:`mortar-board;1em;` What you will learn
11
- :class-card: card-prerequisites
11
+ :class-card: card-prerequisites
12
+
12
13
* What is the new TCPStore backend
13
14
* Compare the new libuv backend against the legacy backend
14
15
* How to enable to use the legacy backend
Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ APIs.
12
12
.. grid :: 2
13
13
14
14
.. grid-item-card :: :octicon:`mortar-board;1em;` What you will learn
15
+ :class-card: card-prerequisites
15
16
16
17
* How to use ``torch.distributed.pipelining `` APIs
17
18
* How to apply pipeline parallelism to a transformer model
18
19
* How to utilize different schedules on a set of microbatches
19
20
20
21
21
22
.. grid-item-card :: :octicon:`list-unordered;1em;` Prerequisites
23
+ :class-card: card-prerequisites
22
24
23
25
* Familiarity with `basic distributed training <https://pytorch.org/tutorials/beginner/dist_overview.html >`__ in PyTorch
24
26
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ easy GPU acceleration for Intel discrete GPUs with PyTorch*.
12
12
Intel® Extension for PyTorch* has been released as an open–source project
13
13
at `Github <https://github.com/intel/intel-extension-for-pytorch >`_.
14
14
15
- - Source code for CPU is available at `master branch <https://github.com/intel/intel-extension-for-pytorch/tree/master >`_.
16
- - Source code for GPU is available at `xpu-master branch <https://github.com/intel/intel-extension-for-pytorch/tree/xpu-master >`_.
15
+ - Source code for CPU is available at `main branch <https://github.com/intel/intel-extension-for-pytorch/tree/main >`_.
16
+ - Source code for GPU is available at `xpu-main branch <https://github.com/intel/intel-extension-for-pytorch/tree/xpu-main >`_.
17
17
18
18
Features
19
19
--------
You can’t perform that action at this time.
0 commit comments