Skip to content

Commit 752e0c9

Browse files
authored
Pull 2.7 binaries (#3330)
1 parent 41d9958 commit 752e0c9

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.ci/docker/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ datasets
3636
transformers
3737
torchmultimodal-nightly # needs to be updated to stable as soon as it's avaialable
3838
onnx
39-
onnxscript
39+
onnxscript>=0.2.2
4040
onnxruntime
4141
evaluate
4242
accelerate>=0.20.1
@@ -69,5 +69,5 @@ pycocotools
6969
semilearn==0.3.2
7070
torchao==0.5.0
7171
segment_anything==1.0
72-
torchrec==1.0.0; platform_system == "Linux"
72+
torchrec==1.1.0; platform_system == "Linux"
7373
fbgemm-gpu==1.1.0; platform_system == "Linux"

.jenkins/build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ sudo apt-get install -y pandoc
2626
# sudo pip3 install torch==2.6.0 torchvision --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
2727
# sudo pip uninstall -y fbgemm-gpu torchrec
2828
# sudo pip3 install fbgemm-gpu==1.1.0 torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
29-
29+
sudo pip uninstall -y torch torchvision torchaudio torchtext torchdata torchrl tensordict
30+
pip3 install torch==2.7.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu126
31+
#sudo pip uninstall -y fbgemm-gpu
3032
# Install two language tokenizers for Translation with TorchText tutorial
3133
python -m spacy download en_core_web_sm
3234
python -m spacy download de_core_news_sm

.jenkins/validate_tutorials_built.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@
5151
"intermediate_source/text_to_speech_with_torchaudio",
5252
"intermediate_source/tensorboard_profiler_tutorial", # reenable after 2.0 release.
5353
"advanced_source/semi_structured_sparse", # reenable after 3303 is fixed.
54-
"recipes_source/recipes/reasoning_about_shapes"
54+
"intermediate_source/mario_rl_tutorial", # reenable after 3302 is fixed
55+
"intermediate_source/reinforcement_ppo", # reenable after 3302 is fixed
56+
"intermediate_source/pinmem_nonblock", # reenable after 3302 is fixed
57+
"intermediate_source/dqn_with_rnn_tutorial", # reenable after 3302 is fixed
58+
"advanced_source/pendulum", # reenable after 3302 is fixed
59+
"advanced_source/coding_ddpg", # reenable after 3302 is fixed
60+
"intermediate_source/torchrec_intro_tutorial", # reenable after 3302 is fixed
61+
"recipes_source/recipes/reasoning_about_shapes" # reenable after 3326 is fixed
5562
]
5663

5764
def tutorial_source_dirs() -> List[Path]:

0 commit comments

Comments
 (0)