Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
dionhaefner committed Nov 7, 2023
1 parent 5b2652e commit 3c2a37b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ jobs:
git apply --whitespace=fix $patchfile
done
make -C py_src -j 4
ls /usr/lib/x86_64-linux-gnu/blas
ls /usr/lib/x86_64-linux-gnu/lapack
python -c "import pyOM_code; print(pyOM_code.__file__)"
python -c "import pyOM_code_MPI; print(pyOM_code_MPI.__file__)"
popd
Expand Down
4 changes: 2 additions & 2 deletions vendor/pyom2/pyOM2_site_specific
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ MPIFLAGS =
F90FLAGS = -llapack -lblas -fconvert=big-endian -O3 -Wall #-check bounds

# python front end
F2PYFLAGS = -llapack -lblas -L/usr/lib/x86_64-linux-gnu/blas -L/usr/lib/x86_64-linux-gnu/lapack --f90exec=$(F90)
F2PY_MPIFLAGS = --f90exec=$(F90)
F2PYFLAGS = -llapack -lblas -L/usr/lib/x86_64-linux-gnu/blas -L/usr/lib/x86_64-linux-gnu/lapack
F2PY_MPIFLAGS = $(shell mpif90 --showme:link) $(shell mpif90 --showme:compile)

0 comments on commit 3c2a37b

Please sign in to comment.