Skip to content

Commit fefbe1f

Browse files
authored
Merge branch 'main' into torch-compile
2 parents 02c90d7 + 42aaa33 commit fefbe1f

File tree

57 files changed

+2094
-1037
lines changed

Some content is hidden

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

57 files changed

+2094
-1037
lines changed

.ci/docker/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tqdm==4.66.1
1313
numpy==1.24.4
1414
matplotlib
1515
librosa
16-
torch==2.3
16+
torch==2.4
1717
torchvision
1818
torchtext
1919
torchdata
@@ -28,9 +28,9 @@ tensorboard
2828
jinja2==3.1.3
2929
pytorch-lightning
3030
torchx
31-
torchrl==0.3.0
32-
tensordict==0.3.0
33-
ax-platform
31+
torchrl==0.5.0
32+
tensordict==0.5.0
33+
ax-platform>==0.4.0
3434
nbformat>==5.9.2
3535
datasets
3636
transformers
@@ -68,4 +68,4 @@ pygame==2.1.2
6868
pycocotools
6969
semilearn==0.3.2
7070
torchao==0.0.3
71-
segment_anything==1.0
71+
segment_anything==1.0

.jenkins/build.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ sudo apt-get install -y pandoc
2121

2222
#Install PyTorch Nightly for test.
2323
# Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html
24-
# Install 2.2 for testing - uncomment to install nightly binaries (update the version as needed).
24+
# Install 2.4 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed).
2525
# pip uninstall -y torch torchvision torchaudio torchtext torchdata
26-
# pip3 install torch==2.3.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu121
26+
# pip3 install torch==2.4.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
2727

2828
# Install two language tokenizers for Translation with TorchText tutorial
2929
python -m spacy download en_core_web_sm
@@ -36,7 +36,6 @@ awsv2 configure set default.s3.multipart_threshold 5120MB
3636
if [[ "${JOB_TYPE}" == "worker" ]]; then
3737
# Step 1: Remove runnable code from tutorials that are not supposed to be run
3838
python $DIR/remove_runnable_code.py beginner_source/aws_distributed_training_tutorial.py beginner_source/aws_distributed_training_tutorial.py || true
39-
# python $DIR/remove_runnable_code.py advanced_source/ddp_pipeline_tutorial.py advanced_source/ddp_pipeline_tutorial.py || true
4039
# Temp remove for mnist download issue. (Re-enabled for 1.8.1)
4140
# python $DIR/remove_runnable_code.py beginner_source/fgsm_tutorial.py beginner_source/fgsm_tutorial.py || true
4241
# python $DIR/remove_runnable_code.py intermediate_source/spatial_transformer_tutorial.py intermediate_source/spatial_transformer_tutorial.py || true

.jenkins/validate_tutorials_built.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
"intermediate_source/fx_conv_bn_fuser",
3030
"intermediate_source/_torch_export_nightly_tutorial", # does not work on release
3131
"advanced_source/super_resolution_with_onnxruntime",
32-
"advanced_source/python_custom_ops", # https://github.com/pytorch/pytorch/issues/127443
33-
"advanced_source/ddp_pipeline", # requires 4 gpus
3432
"advanced_source/usb_semisup_learn", # fails with CUDA OOM error, should try on a different worker
3533
"prototype_source/fx_graph_mode_ptq_dynamic",
3634
"prototype_source/vmap_recipe",
@@ -55,8 +53,6 @@
5553
"intermediate_source/flask_rest_api_tutorial",
5654
"intermediate_source/text_to_speech_with_torchaudio",
5755
"intermediate_source/tensorboard_profiler_tutorial", # reenable after 2.0 release.
58-
"intermediate_source/inductor_debug_cpu", # reenable after 2942
59-
"beginner_source/onnx/onnx_registry_tutorial", # reenable after 2941 is fixed.
6056
"intermediate_source/torch_export_tutorial" # reenable after 2940 is fixed.
6157
]
6258

_static/css/custom.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,23 @@
7171
.sd-card:hover:after {
7272
transform: scaleX(1);
7373
}
74+
75+
.card-prerequisites:hover {
76+
transition: none;
77+
border: none;
78+
}
79+
80+
.card-prerequisites:hover:after {
81+
transition: none;
82+
transform: none;
83+
}
84+
85+
.card-prerequisites:after {
86+
display: block;
87+
content: '';
88+
border-bottom: none;
89+
background-color: #fff;
90+
transform: none;
91+
transition: none;
92+
transform-origin: none;
93+
}
486 KB
Loading
423 KB
Loading
3.52 KB
Loading
-22.1 KB
Binary file not shown.
19 KB
Loading

_static/img/pinmem/pinmem.png

72 KB
Loading

0 commit comments

Comments
 (0)