Skip to content

Commit

Permalink
Merge pull request trilinos#12892 from ndellingwood/kk-snapshot-fix-1…
Browse files Browse the repository at this point in the history
…2891

kokkos-kernel: fix compilation errors in builds enabling MKL and LAPACK TPLs simultaneously
  • Loading branch information
ndellingwood authored Apr 5, 2024
2 parents 1721819 + 802bf05 commit cd9eaf7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ inline void svd_print_specialization() {
} // namespace KokkosLapack

// LAPACK
#ifdef KOKKOSKERNELS_ENABLE_TPL_LAPACK
#if defined(KOKKOSKERNELS_ENABLE_TPL_LAPACK) && \
!defined(KOKKOSKERNELS_ENABLE_TPL_MKL)
#include "KokkosLapack_Host_tpl.hpp"

namespace KokkosLapack {
Expand Down

0 comments on commit cd9eaf7

Please sign in to comment.