Skip to content

Commit

Permalink
Add fixes to CI runner
Browse files Browse the repository at this point in the history
  • Loading branch information
gkielian committed Oct 16, 2024
1 parent 3f8c0b6 commit 5b39fc5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
${{ runner.os }}-pip-
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpu-test-all-activation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
${{ runner.os }}-pip-
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpu-test-all-softmax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
${{ runner.os }}-pip-
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpu-test-gqa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
${{ runner.os }}-pip-
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpu-test-run-exp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
${{ runner.os }}-pip-
- name: Install CPU Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install numpy transformers datasets tiktoken wandb tqdm tensorboard
Expand Down

0 comments on commit 5b39fc5

Please sign in to comment.