Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reference libraries define from config header #584

Merged
merged 3 commits into from
Oct 9, 2024
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: 0 additions & 2 deletions src/config.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,5 @@
#cmakedefine ENABLE_ROCRAND_BACKEND
#cmakedefine ENABLE_ROCSOLVER_BACKEND
#cmakedefine BUILD_SHARED_LIBS
#cmakedefine REF_BLAS_LIBNAME "@REF_BLAS_LIBNAME@"
#cmakedefine REF_CBLAS_LIBNAME "@REF_CBLAS_LIBNAME@"

#endif
5 changes: 5 additions & 0 deletions tests/unit_tests/blas/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
# SPDX-License-Identifier: Apache-2.0
#===============================================================================

# Add compile definitions for the reference libraries
add_compile_definitions(
REF_BLAS_LIBNAME="${REF_BLAS_LIBNAME}"
REF_CBLAS_LIBNAME="${REF_CBLAS_LIBNAME}")

add_subdirectory(level1)
add_subdirectory(level2)
add_subdirectory(level3)
Expand Down