Skip to content

Commit

Permalink
Fixed include files (#73)
Browse files Browse the repository at this point in the history
* Fixed include files

* Fix forward declaration in resolve/LinSolverDirectCuSolverGLU.hpp

Co-authored-by: pelesh <[email protected]>

* Add a forward declaration to resolve/LinSolverDirectRocSolverRf.hpp

Co-authored-by: pelesh <[email protected]>


---------

Co-authored-by: Maksudul Alam <[email protected]>
Co-authored-by: pelesh <[email protected]>
  • Loading branch information
3 people authored Nov 10, 2023
1 parent d9b50f0 commit fa10d84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions resolve/LinSolverDirectCuSolverGLU.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "LinSolver.hpp"
#include "cusolver_defs.hpp"
#include <resolve/MemoryUtils.hpp>

namespace ReSolve
{
// Forward declaration of vector::Vector class
Expand All @@ -19,7 +18,7 @@ namespace ReSolve
}

// Forward declaration of ReSolve handlers workspace
class LinAlgWorkspace;
class LinAlgWorkspaceCUDA;

class LinSolverDirectCuSolverGLU : public LinSolverDirect
{
Expand Down
4 changes: 2 additions & 2 deletions resolve/LinSolverDirectRocSolverRf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#include <rocblas/rocblas.h>
#include <rocsolver/rocsolver.h>
#include <hip/hip_runtime.h>

namespace ReSolve
{
// Forward declaration of vector::Vector class
Expand All @@ -17,10 +16,11 @@ namespace ReSolve
class Vector;
}

// Forward declaration of matrix::Sparse class
// Forward declaration of matrix::Sparse and matrix::Csr classes
namespace matrix
{
class Sparse;
class Csr;
}

class LinSolverDirectRocSolverRf : public LinSolverDirect
Expand Down

0 comments on commit fa10d84

Please sign in to comment.