Skip to content

Commit 72a7c1b

Browse files
authored
Merge branch 'master' into patch-1
2 parents d661071 + 281f370 commit 72a7c1b

File tree

49 files changed

+4782
-2102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4782
-2102
lines changed

.circleci/scripts/build_for_windows.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ if [[ "${CIRCLE_JOB}" == *worker_* ]]; then
4848
python $DIR/remove_runnable_code.py intermediate_source/model_parallel_tutorial.py intermediate_source/model_parallel_tutorial.py || true
4949
python $DIR/remove_runnable_code.py advanced_source/static_quantization_tutorial.py advanced_source/static_quantization_tutorial.py || true
5050
python $DIR/remove_runnable_code.py beginner_source/hyperparameter_tuning_tutorial.py beginner_source/hyperparameter_tuning_tutorial.py || true
51-
python $DIR/remove_runnable_code.py beginner_source/audio_preprocessing_tutorial.py beginner_source/audio_preprocessing_tutorial.py || true
51+
python $DIR/remove_runnable_code.py beginner_source/audio_io_tutorial.py beginner_source/audio_io_tutorial.py || true
52+
python $DIR/remove_runnable_code.py beginner_source/audio_resampling_tutorial.py beginner_source/audio_resampling_tutorial.py || true
53+
python $DIR/remove_runnable_code.py beginner_source/audio_data_augmentation_tutorial.py beginner_source/audio_data_augmentation_tutorial.py || true
54+
python $DIR/remove_runnable_code.py beginner_source/audio_feature_extractions_tutorial.py beginner_source/audio_feature_extractions_tutorial.py || true
55+
python $DIR/remove_runnable_code.py beginner_source/audio_feature_augmentation_tutorial.py beginner_source/audio_feature_augmentation_tutorial.py || true
56+
python $DIR/remove_runnable_code.py beginner_source/audio_datasets_tutorial.py beginner_source/audio_datasets_tutorial.py || true
5257
python $DIR/remove_runnable_code.py beginner_source/dcgan_faces_tutorial.py beginner_source/dcgan_faces_tutorial.py || true
5358
python $DIR/remove_runnable_code.py intermediate_source/tensorboard_profiler_tutorial.py intermediate_source/tensorboard_profiler_tutorial.py || true
5459
# Temp remove for mnist download issue. (Re-enabled for 1.8.1)

.devcontainer/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spacy
1717
ray[tune]
1818

1919
# PyTorch Theme
20-
-e git+git://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme
20+
-e git+https://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme
2121

2222
ipython
2323

.jenkins/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ pip install -r $DIR/../requirements.txt
2929
# RC Link
3030
# pip uninstall -y torch torchvision torchaudio torchtext
3131
# pip install --pre --upgrade -f https://download.pytorch.org/whl/test/cu102/torch_test.html torch torchvision torchaudio torchtext
32+
# pip uninstall -y torch torchvision torchaudio torchtext
33+
# pip install -f https://download.pytorch.org/whl/test/cu111/torch_test.html torch torchvision torchaudio torchtext
3234

3335
# For Tensorboard. Until 1.14 moves to the release channel.
3436
pip install tb-nightly
@@ -39,7 +41,7 @@ python -m spacy download de
3941

4042
# PyTorch Theme
4143
rm -rf src
42-
pip install -e git+git://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme
44+
pip install -e git+https://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme
4345
pip install sphinx-gallery==0.3.1 tqdm matplotlib ipython pillow==8.1.0
4446

4547
aws configure set default.s3.multipart_threshold 5120MB
@@ -53,6 +55,8 @@ if [[ "${JOB_BASE_NAME}" == *worker_* ]]; then
5355
# Temp remove for mnist download issue. (Re-enabled for 1.8.1)
5456
# python $DIR/remove_runnable_code.py beginner_source/fgsm_tutorial.py beginner_source/fgsm_tutorial.py || true
5557
# python $DIR/remove_runnable_code.py intermediate_source/spatial_transformer_tutorial.py intermediate_source/spatial_transformer_tutorial.py || true
58+
# Temp remove for 1.10 release.
59+
# python $DIR/remove_runnable_code.py advanced_source/neural_style_tutorial.py advanced_source/neural_style_tutorial.py || true
5660

5761
# TODO: Fix bugs in these tutorials to make them runnable again
5862
# python $DIR/remove_runnable_code.py beginner_source/audio_classifier_tutorial.py beginner_source/audio_classifier_tutorial.py || true

_static/img/profiler_callstack.png

-30.9 KB
Loading

_static/img/profiler_kernel_view.png

-26.4 KB
Loading
19.5 KB
Loading
55.3 KB
Loading

_static/img/profiler_memory_view.png

60.7 KB
Loading
-34.8 KB
Loading

_static/img/profiler_overview1.png

-55.2 KB
Loading

_static/img/profiler_overview2.png

-43.6 KB
Loading
80.5 KB
Loading

_static/img/profiler_views_list.png

-32 KB
Loading
Loading
Loading

_static/img/tts_pipeline.png

140 KB
Loading

advanced_source/dispatcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ speaking, the structure of your registrations will look like this:
109109
For operators that do not need autograd
110110
---------------------------------------
111111

112-
Note: This section only applies to versions of PyTorch ``>= 3.10``.
112+
Note: This section only applies to versions of PyTorch ``>= 1.10``.
113113

114114
In the next section, we will discuss how to add autograd support to an operator.
115115
But for the ops that do not need autograd support, the following kernel should be

0 commit comments

Comments
 (0)