Skip to content
Merged
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 .github/workflows/version_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fi

# Verify that the version in version.h matches the tag
if [[ "${{ steps.versions.outputs.current_tag }}" != "v${CODE_VERSION}" ]]; then
if [[ "${{ steps.versions.outputs.current_tag }}" != "${CODE_VERSION}" ]]; then
echo "::error::Version mismatch: tag=${{ steps.versions.outputs.current_tag }} ≠ code=${CODE_VERSION}"
exit 1
fi
Expand Down
9 changes: 8 additions & 1 deletion cmake/FindMKL.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,12 @@ endif()
if(NOT TARGET MKL::MKL_SCALAPACK)
find_library(MKL_SCALAPACK NAMES mkl_scalapack_lp64 HINTS ${MKLROOT}/lib ${MKLROOT}/lib/intel64)
message(STATUS "Found MKL_SCALAPACK: ${MKL_SCALAPACK}")
add_library(MKL::MKL_SCALAPACK OBJECT IMPORTED MKL_SCALAPACK)
if(MKL_SCALAPACK)
# create an IMPORTED target that points to the discovered library file
add_library(MKL::MKL_SCALAPACK UNKNOWN IMPORTED)
set_target_properties(MKL::MKL_SCALAPACK PROPERTIES
IMPORTED_LOCATION "${MKL_SCALAPACK}"
INTERFACE_INCLUDE_DIRECTORIES "${MKL_INCLUDE}"
)
endif()
endif()
Loading