Skip to content

Commit

Permalink
trying to figure out how the build system works
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Hughes committed Oct 16, 2024
1 parent 3a72fc1 commit f7b36ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/functionality/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ if(RESOLVE_USE_CUDA)
add_executable(klu_rf_fgmres_test.exe testKLU_Rf_FGMRES.cpp)
target_link_libraries(klu_rf_fgmres_test.exe PRIVATE ReSolve)

add_library( FunctionalityTestHelper SHARED FunctionalityTestHelper.cpp )
# Captain! add_library for functionality test helper, build it, then link it here
target_include_directories( FunctionalityTestHelper PUBLIC ../.. )

# System solver test with cusolver rf and iterative refinement
add_executable(sys_refactor_cuda_test.exe testSysRefactor.cpp)
target_link_libraries(sys_refactor_cuda_test.exe PRIVATE ReSolve FunctionalityTestHelper )
Expand Down
11 changes: 11 additions & 0 deletions tests/functionality/FunctionalityTestHelper.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
#include "FunctionalityTestHelper.hpp"
#include <resolve/vector/Vector.hpp>
#include <resolve/matrix/io.hpp>
#include <resolve/matrix/Coo.hpp>
#include <resolve/matrix/Csr.hpp>
#include <resolve/matrix/Csc.hpp>
#include <resolve/matrix/MatrixHandler.hpp>
#include <resolve/vector/VectorHandler.hpp>
#include <resolve/LinSolverDirectKLU.hpp>
#include <resolve/LinSolverIterativeFGMRES.hpp>
#include <resolve/workspace/LinAlgWorkspace.hpp>
#include <resolve/SystemSolver.hpp>

namespace ReSolve
{
Expand Down

0 comments on commit f7b36ab

Please sign in to comment.