Skip to content

Commit 751702a

Browse files
committed
try install without cache
1 parent 5f8af78 commit 751702a

8 files changed

+10
-10
lines changed

.github/workflows/integration_test_8gpu_compiler_toolkit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
pip config --user set global.progress_bar off
4949
50-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
50+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
5151
5252
mkdir artifacts-to-be-uploaded
5353
python -m torchtitan.experiments.compiler_toolkit.tests.integration_tests artifacts-to-be-uploaded --ngpu 4

.github/workflows/integration_test_8gpu_features.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
6767
pip config --user set global.progress_bar off
6868
69-
python -m pip install --force-reinstall --pre torch --index-url ${{ matrix.index-url }}
69+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url ${{ matrix.index-url }}
7070
7171
USE_CPP=0 python -m pip install --pre torchao --index-url ${{ matrix.index-url }}
7272

.github/workflows/integration_test_8gpu_h100.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
pip config --user set global.progress_bar off
4848
49-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
49+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
5050
5151
USE_CPP=0 python -m pip install --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
5252

.github/workflows/integration_test_8gpu_models.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
pip config --user set global.progress_bar off
4848
49-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
49+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
5050
5151
USE_CPP=0 python -m pip install --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
5252

.github/workflows/integration_test_8gpu_simple_fsdp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
pip config --user set global.progress_bar off
4949
50-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
50+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
5151
5252
mkdir artifacts-to-be-uploaded
5353
python -m torchtitan.experiments.simple_fsdp.tests.integration_tests artifacts-to-be-uploaded --ngpu 8

.github/workflows/integration_test_8gpu_torchcomms.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
pip config --user set global.progress_bar off
4949
50-
python -m pip install --force-reinstall --pre torch torchcomms --index-url https://download.pytorch.org/whl/nightly/cu128
50+
python -m pip install --force-reinstall --no-cache-dir --pre torch torchcomms --index-url https://download.pytorch.org/whl/nightly/cu128
5151
5252
mkdir artifacts-to-be-uploaded
5353
TEST_BACKEND=ncclx TRAIN_FILE=torchtitan.experiments.torchcomms.train python -m torchtitan.experiments.torchcomms.integration_tests artifacts-to-be-uploaded --ngpu 8

.github/workflows/integration_test_8gpu_torchft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
pip config --user set global.progress_bar off
4848
4949
python -m pip install torchft-nightly
50-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
51-
USE_CPP=0 python -m pip install --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
50+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
51+
USE_CPP=0 python -m pip install --no-cache-dir --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
5252
5353
mkdir artifacts-to-be-uploaded
5454
echo "torchft_lighthouse"

.github/workflows/integration_test_8gpu_vlm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
4848
pip config --user set global.progress_bar off
4949
50-
python -m pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
50+
python -m pip install --force-reinstall --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu126
5151
52-
USE_CPP=0 python -m pip install --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
52+
USE_CPP=0 python -m pip install --no-cache-dir --pre torchao --index-url https://download.pytorch.org/whl/nightly/cu126
5353
5454
mkdir artifacts-to-be-uploaded
5555
python -m torchtitan.experiments.vlm.tests.integration_tests artifacts-to-be-uploaded --ngpu 4

0 commit comments

Comments
 (0)