Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/run-linux-cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: [self-hosted, Linux, X64, CUDA]

container:
image: martinkim0/scvi-tools:ubuntu-latest-mamba-latest-python-3.11-cuda-11
image: martinkim0/scvi-tools:py3.11-cu11
options: --user root --gpus all

steps:
Expand All @@ -22,11 +22,15 @@ jobs:

- name: Install dependencies
run: |
pip install -U scvi-tools[tutorials]
python -m pip install -U scvi-tools[tutorials]

- name: Install nbconvert
run: |
pip install -U nbconvert
python -m pip install -U jupyter ipykernel nbconvert

- name: Install kernel
run: |
python -m ipykernel install

- name: Run notebook
run: |
Expand Down