Skip to content

Merge pull request #80 from trustimaging/slowdown #312

Merge pull request #80 from trustimaging/slowdown

Merge pull request #80 from trustimaging/slowdown #312

Workflow file for this run

name: CI
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
examples:
name: Examples
runs-on: ubuntu-latest
env:
DEVITO_COMPILER: gcc
DEVITO_LANGUAGE: openmp
PYTHON_VERSION: 3.11.4
strategy:
# Prevent all build to stop if a single one fails
fail-fast: false
steps:
- name: Checkout stride
uses: actions/checkout@v3
with:
path: stride
- name: Checkout devito
uses: actions/checkout@v3
with:
repository: devitocodes/devito
path: devito
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true
activate-environment: stride
environment-file: stride/environment.yml
python-version: 3.11.4
auto-activate-base: false
- name: Install dependencies
shell: bash -l {0}
run: |
cd stride
pip install -e .
- name: Install devito
shell: bash -l {0}
run: |
cd devito
pip install -e .
- name: Homogeneous examples
shell: bash -l {0}
run: |
cd stride
mrun -nw 1 -nth 2 python stride_examples/examples/homogeneous_acoustic/forward_2D.py
mrun -nw 1 -nth 2 python stride_examples/examples/homogeneous_acoustic/forward_3D.py
mrun -nw 1 -nth 2 python stride_examples/examples/homogeneous_elastic/forward_2D.py
- name: Breast 2D
shell: bash -l {0}
run: |
cd stride
mrun -nw 1 -nth 2 python stride_examples/examples/breast2D/01_script_forward.py
mrun -nw 1 -nth 2 python stride_examples/examples/breast2D/02_script_inverse.py