Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gyre/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ifeq ($(WITH_GYRE),yes)
SRCS :=
SRCS_CHECK := test/src/test_gyre.f90
INTERNAL_DEPENDS_ON := forum const
EXTERNAL_DEPENDS_ON := hdf5_fortran lapack95 lapack
EXTERNAL_DEPENDS_ON := hdf5_fortran lapack95 lapack blas
CHECK_RESULTS_GOLDEN := test/test_output
CHECK_DIFF_PROG := ndiff -quiet -relerr 1.0e-6
BINTYPE := lib
Expand Down
7 changes: 2 additions & 5 deletions make/setup-depends.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ PKG_CONFIG_FLAGS =

ifneq ($(MESASDK_ROOT),)
ifeq ($(WITH_CRLIBM),yes)
PKG_CONFIG_FLAGS += --define-variable=MATH_SLOT=crmath
MESASDK_MATH_SLOT = crmath
PKG_CONFIG_FLAGS += --define-variable=math_slot=crmath
else
PKG_CONFIG_FLAGS += --define-variable=MATH_SLOT=default
MESASDK_MATH_SLOT = default
PKG_CONFIG_FLAGS += --define-variable=math_slot=default
endif
export MESASDK_MATH_SLOT
endif

PKG_CONFIG_PATH := $(shell BUILD_DIR=$(BUILD_DIR_) $(MAKE_DIR)/gen-pkgconfig-path $(SUBDIRS)):$(PKG_CONFIG_PATH)
Expand Down
2 changes: 1 addition & 1 deletion mtx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SRCS_CHECK := test/src/test_mtx.f90 \
test/src/test_block_tridiagonal.f90
# TODO: Also contains test dependencies sadly, I should fix this at some point
INTERNAL_DEPENDS_ON := const utils math
EXTERNAL_DEPENDS_ON := lapack
EXTERNAL_DEPENDS_ON := lapack blas
BINTYPE := lib

# Testing
Expand Down
3 changes: 0 additions & 3 deletions mtx/public/mtx_solve_routines.inc
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@
real(dp) :: temp
integer :: i, k
info = 0
!$omp simd private(temp)
do i = 1,n
temp = b(i)
b(i) = b(ipiv(i))
Expand Down Expand Up @@ -251,7 +250,6 @@
real(dp) :: temp
integer :: i, k
info = 0
!$omp simd private(temp)
do i = 1,n
temp = b(i)
b(i) = b(ipiv(i))
Expand Down Expand Up @@ -287,7 +285,6 @@
real(dp) :: temp
integer :: i, k
info = 0
!$omp simd private(temp)
do i = 1,n
temp = b(i)
b(i) = b(ipiv(i))
Expand Down
Loading