Skip to content

Commit

Permalink
Another bump on the verifier relaxation.
Browse files Browse the repository at this point in the history
  • Loading branch information
PapyChacal committed Aug 20, 2024
1 parent 5309538 commit 2c8dfae
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-lit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install requirements and xDSL
run: |
pip install git+https://github.com/xdslproject/xdsl@f6fdfb86d20f39f2d0e2e3f76900a1013bc5ef79
pip install git+https://github.com/xdslproject/xdsl@935675efd470505028466917126f8cc8f64ce4e3
pip install -e .[tests]
- name: Execute lit tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-mlir-mpi-openmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
pip install -e .[tests]
pip install mpi4py
pip install git+https://github.com/xdslproject/xdsl@f6fdfb86d20f39f2d0e2e3f76900a1013bc5ef79
pip install git+https://github.com/xdslproject/xdsl@935675efd470505028466917126f8cc8f64ce4e3
- name: Test with MPI + openmp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-mlir-mpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
pip install -e .[tests]
pip install mpi4py
pip install git+https://github.com/xdslproject/xdsl@f6fdfb86d20f39f2d0e2e3f76900a1013bc5ef79
pip install git+https://github.com/xdslproject/xdsl@935675efd470505028466917126f8cc8f64ce4e3
- name: Test with MPI - no Openmp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-mlir-openmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
pip install -e .[tests]
pip install mpi4py
pip install git+https://github.com/xdslproject/xdsl@f6fdfb86d20f39f2d0e2e3f76900a1013bc5ef79
pip install git+https://github.com/xdslproject/xdsl@935675efd470505028466917126f8cc8f64ce4e3
- name: Test no-MPI, Openmp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-mlir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install requirements and xDSL
run: |
pip install -e .[tests]
pip install git+https://github.com/xdslproject/xdsl@f6fdfb86d20f39f2d0e2e3f76900a1013bc5ef79
pip install git+https://github.com/xdslproject/xdsl@935675efd470505028466917126f8cc8f64ce4e3
- name: Test no-MPI, no-Openmp
run: |
Expand Down
2 changes: 0 additions & 2 deletions devito/xdsl_core/xdsl_cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ def _jit_compile(self):
xdsl_args = [source_name,
"--allow-unregistered-dialect",
"-p",
"--disable-verify",
xdsl_pipeline[1:-1],]
# We use the Python API to run xDSL rather than a subprocess
# This avoids reimport overhead
Expand Down Expand Up @@ -461,7 +460,6 @@ def _jit_compile(self):
# Run the first pipeline, mostly xDSL-centric
xdsl_args = [source_name,
"--allow-unregistered-dialect",
"--disable-verify",
"-p",
xdsl_pipeline[1:-1],]
# We use the Python API to run xDSL rather than a subprocess
Expand Down

0 comments on commit 2c8dfae

Please sign in to comment.