Skip to content

Commit

Permalink
fixing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
qinatan committed Oct 20, 2023
1 parent 6588611 commit eee91b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/micm/solver/cuda_linear_solver.hpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#pragma once
#include <micm/solver/linear_solver.hpp>
#include <micm/solver/lu_decomposition.hpp>
#include <micm/util/cuda_param.hpp>

#ifdef USE_CUDA
#include <micm/solver/cuda_linear_solver.cuh>
namespace micm{
template<typename T, template<class> class SparseMatrixPolicy, class LuDecompositionPolicy = LuDecomposition>
class CudaLinearSolver: public LinearSolver{
class CudaLinearSolver: public LinearSolver<T, SparseMatrixPolicy, LuDecompositionPolicy> {
public:
//constructor
CudaLinearSolver::CudaLinearSolver(){};
Expand Down

0 comments on commit eee91b4

Please sign in to comment.