Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Common location to install libaio-dev #2779

Merged
merged 5 commits into from
Feb 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/amd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.1.1
python -c "import torch; print('torch:', torch.__version__, torch)"
python -c "import torch; print('CUDA available:', torch.cuda.is_available())"
sudo apt-get install -y libaio-dev

- name: Install transformers
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/nv-transformers-v100.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
pip install torch==1.8.2+cu111 torchvision==0.9.2+cu111 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html
python -c "import torch; print('torch:', torch.__version__, torch)"
python -c "import torch; print('CUDA available:', torch.cuda.is_available())"
sudo apt-get install -y libaio-dev

- name: Install deepspeed
run: |
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/setup-venv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ runs:
- id: update-env
run: |
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install -y libaio-dev
pip install --upgrade pip
python -m pip install -U virtualenv
shell: bash
- id: create-venv
run: |
sudo apt-get update && sudo apt-get -y upgrade
pip install --upgrade pip
python -m pip install -U virtualenv
python -m venv unit-test-venv
source ./unit-test-venv/bin/activate
pip install --upgrade pip
Expand Down