Skip to content

Removing legacy python integration #1

Removing legacy python integration

Removing legacy python integration #1

Workflow file for this run

name: RInside
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
model:
- d2q9
precision:
- float
- double
arch:
- cpu
- cuda
- hip
reticulate:
- true
- false
test:
- true
- false
exclude:
- arch: "cuda"
test: true
- arch: "hip"
test: true
- reticulate: true
test: false
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install
with:
r: true
rdep: true
openmpi: true
rinside: true
reticulate: ${{ matrix.reticulate }}
cuda: ${{ matrix.arch == "cuda" }}

Check failure on line 44 in .github/workflows/rinside.yaml

View workflow run for this annotation

GitHub Actions / RInside

Invalid workflow file

The workflow is not valid. .github/workflows/rinside.yaml (Line: 44, Col: 15): Unexpected symbol: '"cuda"'. Located at position 16 within expression: matrix.arch == "cuda" .github/workflows/rinside.yaml (Line: 45, Col: 14): Unexpected symbol: '"hip"'. Located at position 16 within expression: matrix.arch == "hip"
hip: ${{ matrix.arch == "hip" }}
- name: Configure
uses: ./.github/actions/configure
with:
gpu: ${{ matrix.arch == "cuda" }}
hip: ${{ matrix.arch == "hip" }}
cuda_arch: sm_60
rinside: true
paranoid: true
precision: ${{ matrix.precision }}
- name: Compile
uses: ./.github/actions/compile
with:
model: ${{ matrix.model }}
- name: Run tests
uses: ./.github/actions/test
with:
model: ${{ matrix.model }}