From bb7ccc5c99280fa0dff050c7a0557ffa297acf08 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 5 Dec 2019 18:25:58 -0500 Subject: [PATCH] Compile files using the LAPACK wrappers separately --- source/lac/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/lac/CMakeLists.txt b/source/lac/CMakeLists.txt index 4371f69da3..7d0862977a 100644 --- a/source/lac/CMakeLists.txt +++ b/source/lac/CMakeLists.txt @@ -26,8 +26,6 @@ SET(_unity_include_src chunk_sparsity_pattern.cc dynamic_sparsity_pattern.cc exceptions.cc - full_matrix.cc - lapack_full_matrix.cc scalapack.cc la_vector.cc la_parallel_vector.cc @@ -50,14 +48,17 @@ SET(_unity_include_src sparsity_pattern.cc sparsity_tools.cc swappable_vector.cc - tridiagonal_matrix.cc vector.cc vector_memory.cc ) +# make sure that files requiring the LAPACK wrappers are compiled separately. SET(_separate_src + full_matrix.cc + lapack_full_matrix.cc sparse_matrix.cc sparse_matrix_inst2.cc + tridiagonal_matrix.cc ) # Add CUDA wrapper files -- 2.39.5