From fb9cc17f204ec798fce331b4054937551a99bfe8 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Mon, 9 Feb 2026 21:34:38 -0800 Subject: [PATCH 1/4] ping bump torchcodec torchcodec we are using (0.10.0.dev20251211) has no longer existed in https://download.pytorch.org/whl/nightly/torchcodec/, which leads to lots of cis including all whisper cis crashed. this diff pin bump torchcodec to bring ci back. Differential Revision: [D92797044](https://our.internmc.facebook.com/intern/diff/D92797044/) [ghstack-poisoned] --- .ci/scripts/test_model_e2e.sh | 2 +- examples/models/moshi/mimi/install_requirements.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/scripts/test_model_e2e.sh b/.ci/scripts/test_model_e2e.sh index 711aff15111..5ec9e313326 100755 --- a/.ci/scripts/test_model_e2e.sh +++ b/.ci/scripts/test_model_e2e.sh @@ -167,7 +167,7 @@ if [ "$AUDIO_URL" != "" ]; then elif [[ "$MODEL_NAME" == *whisper* ]]; then conda install -y -c conda-forge "ffmpeg<8" pip install datasets soundfile - pip install torchcodec==0.10.0.dev20251211 --extra-index-url https://download.pytorch.org/whl/nightly/cpu + pip install torchcodec==0.11.0.dev20260209 --extra-index-url https://download.pytorch.org/whl/nightly/cpu python -c "from datasets import load_dataset;import soundfile as sf;sample = load_dataset('distil-whisper/librispeech_long', 'clean', split='validation')[0]['audio'];sf.write('${MODEL_DIR}/$AUDIO_FILE', sample['array'][:sample['sampling_rate']*30], sample['sampling_rate'])" fi diff --git a/examples/models/moshi/mimi/install_requirements.sh b/examples/models/moshi/mimi/install_requirements.sh index 36dbb4316f5..1a472c8f8c1 100755 --- a/examples/models/moshi/mimi/install_requirements.sh +++ b/examples/models/moshi/mimi/install_requirements.sh @@ -8,7 +8,7 @@ set -x sudo apt install ffmpeg -y -pip install torchcodec==0.10.0.dev20251211 --extra-index-url https://download.pytorch.org/whl/nightly/cpu +pip install torchcodec==0.11.0.dev20260209 --extra-index-url https://download.pytorch.org/whl/nightly/cpu pip install moshi==0.2.11 pip install bitsandbytes soundfile einops # Run llama2/install requirements for torchao deps From db2655a5aba7016044fef7b29e574717fe2b5a72 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Mon, 9 Feb 2026 22:15:09 -0800 Subject: [PATCH 2/4] Update on "ping bump torchcodec" torchcodec we are using (0.10.0.dev20251211) has no longer existed in https://download.pytorch.org/whl/nightly/torchcodec/, which leads to lots of cis including all whisper cis crashed. this diff pin bump torchcodec to bring ci back. Differential Revision: [D92797044](https://our.internmc.facebook.com/intern/diff/D92797044/) [ghstack-poisoned] --- torch_pin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch_pin.py b/torch_pin.py index 62a2572fd78..3be8cec87c6 100644 --- a/torch_pin.py +++ b/torch_pin.py @@ -1,2 +1,2 @@ TORCH_VERSION = "2.11.0" -NIGHTLY_VERSION = "dev20251222" +NIGHTLY_VERSION = "dev20260209" From 1b0d10b4e6da8dd967e010eb2bc4df88e6fd64e2 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Mon, 9 Feb 2026 22:41:23 -0800 Subject: [PATCH 3/4] Update on "ping bump torchcodec" torchcodec we are using (0.10.0.dev20251211) has no longer existed in https://download.pytorch.org/whl/nightly/torchcodec/, which leads to lots of cis including all whisper cis crashed. this diff pin bump torchcodec to bring ci back. Differential Revision: [D92797044](https://our.internmc.facebook.com/intern/diff/D92797044/) [ghstack-poisoned] --- install_requirements.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_requirements.py b/install_requirements.py index 8559c28fbf2..56ba40ff113 100644 --- a/install_requirements.py +++ b/install_requirements.py @@ -119,12 +119,12 @@ def install_optional_example_requirements(use_pytorch_nightly): print("Installing torch domain libraries") DOMAIN_LIBRARIES = [ ( - f"torchvision==0.25.0.{NIGHTLY_VERSION}" + f"torchvision==0.26.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchvision" ), ( - f"torchaudio==2.10.0.{NIGHTLY_VERSION}" + f"torchaudio==2.11.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchaudio" ), From 2c62a2e68ef16bfe1f1fa3e75ed5deb3afb3e1e4 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Tue, 10 Feb 2026 00:08:01 -0800 Subject: [PATCH 4/4] Update on "ping bump torchcodec" torchcodec we are using (0.10.0.dev20251211) has no longer existed in https://download.pytorch.org/whl/nightly/torchcodec/, which leads to lots of cis including all whisper cis crashed. this diff pin bump torchcodec to bring ci back. Differential Revision: [D92797044](https://our.internmc.facebook.com/intern/diff/D92797044/) [ghstack-poisoned] --- .ci/scripts/test_model_e2e.sh | 2 +- examples/models/moshi/mimi/install_requirements.sh | 2 +- install_requirements.py | 4 ++-- torch_pin.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/scripts/test_model_e2e.sh b/.ci/scripts/test_model_e2e.sh index 5ec9e313326..15c44d0ef1e 100755 --- a/.ci/scripts/test_model_e2e.sh +++ b/.ci/scripts/test_model_e2e.sh @@ -167,7 +167,7 @@ if [ "$AUDIO_URL" != "" ]; then elif [[ "$MODEL_NAME" == *whisper* ]]; then conda install -y -c conda-forge "ffmpeg<8" pip install datasets soundfile - pip install torchcodec==0.11.0.dev20260209 --extra-index-url https://download.pytorch.org/whl/nightly/cpu + pip install torchcodec==0.10.0.dev20251222 --extra-index-url https://download.pytorch.org/whl/nightly/cpu python -c "from datasets import load_dataset;import soundfile as sf;sample = load_dataset('distil-whisper/librispeech_long', 'clean', split='validation')[0]['audio'];sf.write('${MODEL_DIR}/$AUDIO_FILE', sample['array'][:sample['sampling_rate']*30], sample['sampling_rate'])" fi diff --git a/examples/models/moshi/mimi/install_requirements.sh b/examples/models/moshi/mimi/install_requirements.sh index 1a472c8f8c1..993aa65e137 100755 --- a/examples/models/moshi/mimi/install_requirements.sh +++ b/examples/models/moshi/mimi/install_requirements.sh @@ -8,7 +8,7 @@ set -x sudo apt install ffmpeg -y -pip install torchcodec==0.11.0.dev20260209 --extra-index-url https://download.pytorch.org/whl/nightly/cpu +pip install torchcodec==0.10.0.dev20251222 --extra-index-url https://download.pytorch.org/whl/nightly/cpu pip install moshi==0.2.11 pip install bitsandbytes soundfile einops # Run llama2/install requirements for torchao deps diff --git a/install_requirements.py b/install_requirements.py index 56ba40ff113..8559c28fbf2 100644 --- a/install_requirements.py +++ b/install_requirements.py @@ -119,12 +119,12 @@ def install_optional_example_requirements(use_pytorch_nightly): print("Installing torch domain libraries") DOMAIN_LIBRARIES = [ ( - f"torchvision==0.26.0.{NIGHTLY_VERSION}" + f"torchvision==0.25.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchvision" ), ( - f"torchaudio==2.11.0.{NIGHTLY_VERSION}" + f"torchaudio==2.10.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchaudio" ), diff --git a/torch_pin.py b/torch_pin.py index 3be8cec87c6..62a2572fd78 100644 --- a/torch_pin.py +++ b/torch_pin.py @@ -1,2 +1,2 @@ TORCH_VERSION = "2.11.0" -NIGHTLY_VERSION = "dev20260209" +NIGHTLY_VERSION = "dev20251222"