-
Notifications
You must be signed in to change notification settings - Fork 14
76 lines (63 loc) · 2.13 KB
/
torch-tests.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: TorchScript tests
on:
push:
branches: [master]
pull_request:
# Check all PR
concurrency:
group: torch-tests-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
tests:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / Torch ${{ matrix.torch-version }}
strategy:
matrix:
include:
- os: ubuntu-20.04
torch-version: 1.11.*
python-version: "3.7"
cargo-test-flags: --release
- os: ubuntu-20.04
torch-version: 2.0.*
python-version: "3.11"
cargo-test-flags: --release
do-valgrind: true
- os: macos-11
torch-version: 2.0.*
python-version: "3.11"
cargo-test-flags: --release
- os: windows-2019
torch-version: 2.0.*
python-version: "3.11"
cargo-test-flags: --release
steps:
- uses: actions/checkout@v3
- name: setup rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
# we get torch from pip to run the C++ test
- name: setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install valgrind
if: matrix.do-valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- name: Setup sccache
uses: mozilla-actions/[email protected]
- name: Setup sccache environnement variables
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
- name: run TorchScript C++ tests
run: cargo test --package rascaline-torch ${{ matrix.cargo-test-flags }}
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
RASCALINE_TORCH_TEST_VERSION: ${{ matrix.torch-version }}