-
Notifications
You must be signed in to change notification settings - Fork 33
45 lines (36 loc) · 954 Bytes
/
gpu.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: GPU Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
gpu-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install FFMPEG
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Install PySide2
run: |
python -m pip install --upgrade pip
pip install "pyside2==5.13.2"
- name: Install PyTorch with CUDA
run: |
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu102
- name: Install package and test dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-cov
python setup.py develop
- name: GPU Tests
run: |
pytest -v -m "gpu" tests/
env:
CUDA_VISIBLE_DEVICES: 0