From af96ac22b34bba4ea5673a1301f79fea9128a9e1 Mon Sep 17 00:00:00 2001 From: tomcaruso Date: Tue, 11 Jul 2023 15:47:52 +0200 Subject: [PATCH] TEMPORARY Try to capture the issue with --openmp --- .github/workflows/continuous-integration.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ae861cf48..82776e46d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -113,7 +113,7 @@ jobs: working-directory: ./pytest run: | export PSYDAC_MESH_DIR=$GITHUB_WORKSPACE/mesh - python -m pytest --pyargs psydac -m "not parallel" + python -m pytest --pyargs psydac -m "not parallel" -vx python mpi_tester.py --pyargs psydac -m "parallel and not petsc" - name: Remove test directory diff --git a/setup.py b/setup.py index 026d67012..74c53330b 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def build_module(self, module, module_file, package): '\nPyccelise module: %s' % str(module), level=distutils.log.INFO) # TODO add --openmp flag in pyccel command when the issue of pyccelise bsplines_kernels.py with --openmp is solved - sub_run([shutil.which('pyccel'), outfile, '--language', 'fortran'], shell=False) + sub_run([shutil.which('pyccel'), outfile, '--language', 'fortran', '--openmp'], shell=False) # This part is copy from setuptools.command.build_py.build_module if copied: