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
7 changes: 4 additions & 3 deletions cmake/modules/FindOrFetchBTAS.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ if (NOT TARGET BTAS::BTAS)
target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_UPPER=1)
else()
if (NOT LINALG_MANGLING STREQUAL lower_)
message(WARNING "Linear algebra libraries' mangling convention not specified; specify -DLINALG_MANGLING={lower,lower_,UPPER}, if needed; will assume lower_")
message(WARNING "Linear algebra libraries' mangling convention not specified; specify -DLINALG_MANGLING={lower,lower_,UPPER}, if needed; BLASPP will try to autodetect")
endif(NOT LINALG_MANGLING STREQUAL lower_)
target_compile_definitions(blaspp PUBLIC -DBLAS_FORTRAN_ADD_=1)
target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_ADD_=1)
# these were needed for some configs at some point in the past? But in most cases they just produce compile noise
# target_compile_definitions(blaspp PUBLIC -DBLAS_FORTRAN_ADD_=1)
# target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_ADD_=1)
endif()
endif (_linalgpp_use_standard_linalg_kits)

Expand Down
2 changes: 1 addition & 1 deletion doc/dox/dev/Customizing-Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public:

// MADNESS compliant serialization
template <typename Archive>
void serialize(const Archive&);
void serialize(Archive&);

}; // class MyLazyTile
```
Expand Down