Skip to content

Commit

Permalink
Release 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Köhler committed Jul 13, 2022
1 parent 78adec5 commit db93b89
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 10,494 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
3.2.1 (July 12, 2022)
---------------------
- Fix compilation bug in MacOS X (GH: #30)

3.2.0 (May 17, 2022)
----------------------
- Import LAPACK 3.10.1
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors:
given-names: "Jens"
orcid: "https://orcid.org/0000-0001-5567-9637"
title: "FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangable backends"
version: 3.2.0
version: 3.2.1
doi: 10.5281/zenodo.798186
date-released: 2022-01-17
url: "https://github.com/mpimd-csc/flexiblas"
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
INCLUDE(libcscutils/CMakeModules/CheckPolicy.cmake)
CheckPolicy(CMP0048 NEW)

PROJECT(FlexiBLAS LANGUAGES C Fortran VERSION 3.2.0)
PROJECT(FlexiBLAS LANGUAGES C Fortran VERSION 3.2.1)
ENABLE_LANGUAGE(Fortran)
cmake_minimum_required(VERSION 3.3.0)

Expand Down Expand Up @@ -199,6 +199,7 @@ SET ( INCLUDE_DIR ${INCLUDE_DIR} ${CMAKE_BINARY_DIR}/include ${CMAKE_SOURCE_DIR}
LIST(REMOVE_DUPLICATES INCLUDE_DIR)
IF (APPLE)
SET ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_FILE_OFFSET_BITS=64 ")
SET ( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -rdynamic -Wl,-export_dynamic")
ELSE()
IF (WIN32)
SET ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_FILE_OFFSET_BITS=64 -Wall")
Expand Down
2 changes: 1 addition & 1 deletion CODE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangable backends
shortname: flexiblas
version: 3.2.0
version: 3.2.1
release-date: 2022-01-17
id: 10.5281/zenodo.798186
id-type: doi
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangeable backends
================================================================================

**Version 3.2.0** 10.5281/zenodo.798186
**Version 3.2.1** 10.5281/zenodo.798186

**Project Website:** https://www.mpi-magdeburg.mpg.de/projects/flexiblas

Expand Down Expand Up @@ -287,6 +287,7 @@ Thanks Iñaki Ucar (https://src.fedoraproject.org/user/iucar) for packaging and
maintaining the Fedora integration.



### Caveats

* If **FlexiBLAS** is not automatically selected by the `update-alternatives`
Expand Down Expand Up @@ -314,6 +315,13 @@ maintaining the Fedora integration.
one of these version installed, please update *OpenBLAS* before installing
**FlexiBLAS**.

* If FlexiBLAS should be used on MacOS X and OpenBLAS is installed via `brew`,
it is necessary to extend cmake's search path by setting:
```
export CMAKE_PREFIX_PATH=/usr/local/opt/openblas:$CMAKE_PREFIX_PATH
```


### Testing
**FlexiBLAS** comes with the reference *BLAS* and reference *LAPACK* test suite.
The tests are executed using
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
flexiblas (3.2.1) focal; urgency=medium

* Bugfix release. See CHANGELOG

-- Martin Koehler <[email protected]> Thu, 12 Jul 2022 12:00:00 +0100


flexiblas (3.2.0) focal; urgency=medium

* New minor release. See CHANGELOG
Expand Down
2 changes: 1 addition & 1 deletion src/fallback_lapack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ else()
endif()

if (APPLE)
set_target_properties(flexiblas_fallback_lapack PROPERTIES LINK_FLAGS "-undefined dynamic_lookup -flat_namespace")
set_target_properties(flexiblas_fallback_lapack PROPERTIES LINK_FLAGS "-undefined dynamic_lookup ")
endif()

target_include_directories(flexiblas_fallback_lapack PRIVATE ${PROJECT_BINARY_DIR}/include)
Expand Down
Empty file.
Loading

0 comments on commit db93b89

Please sign in to comment.