Skip to content

Commit

Permalink
Merge branch 'fixes-for-circle-blas' into 'master'
Browse files Browse the repository at this point in the history
fixes for circle blas

See merge request correaa/boost-multi!1357
  • Loading branch information
correaa committed Feb 17, 2025
2 parents 2dfccb7 + abcdaf5 commit 9e033b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 12 additions & 10 deletions include/boost/multi/adaptors/fftw/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ if(ENABLE_CUDA OR DEFINED CXXCUDA)
endif()
endif()

#find_package(BLAS REQUIRED)
#find_path(
# BLAS_INCLUDE_DIRS
# cblas.h
# /usr/include
# /usr/local/include
# $ENV{BLAS_HOME}/include
#)
# include_directories(${TEST_EXE} PRIVATE ${BLAS_INCLUDE_DIRS})
#link_libraries(${BLAS_LIBRARIES})
if(ENABLE_CIRCLE)
find_package(BLAS REQUIRED)
find_path(
BLAS_INCLUDE_DIRS
cblas.h
/usr/include
/usr/local/include
$ENV{BLAS_HOME}/include
)
include_directories(${TEST_EXE} PRIVATE ${BLAS_INCLUDE_DIRS})
link_libraries(${BLAS_LIBRARIES})
endif()

enable_testing()

Expand Down
2 changes: 1 addition & 1 deletion include/boost/multi/adaptors/fftw/test/so_shift.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022-2024 Alfredo A. Correa
// Copyright 2022-2025 Alfredo A. Correa
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

Expand Down

0 comments on commit 9e033b1

Please sign in to comment.