From 00a142a2b82bfa4e47d71aa2673d5f877f5ee2d8 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Fri, 13 Sep 2024 11:00:04 -0700 Subject: [PATCH 1/6] [DO NOTE MERGE] 2.5 RC TEST --- .jenkins/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.jenkins/build.sh b/.jenkins/build.sh index 8830c4259a5..6e844072a7c 100755 --- a/.jenkins/build.sh +++ b/.jenkins/build.sh @@ -21,9 +21,9 @@ sudo apt-get install -y pandoc #Install PyTorch Nightly for test. # Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html -# Install 2.4 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed). -# pip uninstall -y torch torchvision torchaudio torchtext torchdata -# pip3 install torch==2.4.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 +# Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed). +pip uninstall -y torch torchvision torchaudio torchtext torchdata +pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 # Install two language tokenizers for Translation with TorchText tutorial python -m spacy download en_core_web_sm From a108b6610e15deafb3fe98a642dc735511e1d8b2 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Wed, 9 Oct 2024 14:44:58 -0700 Subject: [PATCH 2/6] Pin torchrec and fbgemm to 1.0.0 --- .ci/docker/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/docker/requirements.txt b/.ci/docker/requirements.txt index 01e6a829261..cfc0d0d3ad7 100644 --- a/.ci/docker/requirements.txt +++ b/.ci/docker/requirements.txt @@ -70,5 +70,5 @@ pycocotools semilearn==0.3.2 torchao==0.5.0 segment_anything==1.0 -torchrec==0.8.0 -fbgemm-gpu==0.8.0 +torchrec==1.0.0 +fbgemm-gpu==1.0.0 From 20e0aee8c5c13d30b8ac090916949e4dbbb52a56 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Thu, 10 Oct 2024 08:51:12 -0700 Subject: [PATCH 3/6] Update requirements.txt --- .ci/docker/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/docker/requirements.txt b/.ci/docker/requirements.txt index cfc0d0d3ad7..01e6a829261 100644 --- a/.ci/docker/requirements.txt +++ b/.ci/docker/requirements.txt @@ -70,5 +70,5 @@ pycocotools semilearn==0.3.2 torchao==0.5.0 segment_anything==1.0 -torchrec==1.0.0 -fbgemm-gpu==1.0.0 +torchrec==0.8.0 +fbgemm-gpu==0.8.0 From 413dd0effdc1bf127c88961a3810e2e16bc70e5f Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Thu, 10 Oct 2024 08:52:20 -0700 Subject: [PATCH 4/6] Update build.sh --- .jenkins/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.jenkins/build.sh b/.jenkins/build.sh index 6e844072a7c..7f297cac9ae 100755 --- a/.jenkins/build.sh +++ b/.jenkins/build.sh @@ -24,6 +24,7 @@ sudo apt-get install -y pandoc # Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed). pip uninstall -y torch torchvision torchaudio torchtext torchdata pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 +pip3 install torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 # Install two language tokenizers for Translation with TorchText tutorial python -m spacy download en_core_web_sm From fc54919fd7169ab21db4ab60e541b9d5ecd49d72 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Thu, 10 Oct 2024 09:01:15 -0700 Subject: [PATCH 5/6] Update build.sh --- .jenkins/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jenkins/build.sh b/.jenkins/build.sh index 7f297cac9ae..4f320294015 100755 --- a/.jenkins/build.sh +++ b/.jenkins/build.sh @@ -24,7 +24,7 @@ sudo apt-get install -y pandoc # Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed). pip uninstall -y torch torchvision torchaudio torchtext torchdata pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 -pip3 install torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 +pip3 install fbgemm==1.0.0 torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 # Install two language tokenizers for Translation with TorchText tutorial python -m spacy download en_core_web_sm From a5707e9dd281e4253f892624de5f74cd62a20c98 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Thu, 10 Oct 2024 09:30:48 -0700 Subject: [PATCH 6/6] Update build.sh --- .jenkins/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jenkins/build.sh b/.jenkins/build.sh index 4f320294015..60867ce1d34 100755 --- a/.jenkins/build.sh +++ b/.jenkins/build.sh @@ -24,7 +24,7 @@ sudo apt-get install -y pandoc # Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed). pip uninstall -y torch torchvision torchaudio torchtext torchdata pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 -pip3 install fbgemm==1.0.0 torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 +pip3 install fbgemm-gpu==1.0.0 torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124 # Install two language tokenizers for Translation with TorchText tutorial python -m spacy download en_core_web_sm