Skip to content

Commit

Permalink
fixing debug
Browse files Browse the repository at this point in the history
  • Loading branch information
qinatan committed Oct 20, 2023
1 parent 633e164 commit e2a5647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/micm/solver/cuda_linear_solver.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace micm
{
void SolveKernelDriver(
CudaLinearSolverParam& linearSolver,
CudaLinearSolverParam& sparseMatrix,
CudaSparseMatrixParam& sparseMatrix,
CudaMatrixParam& denseMatrix);
} // namespace cuda
} // namespace micm
2 changes: 1 addition & 1 deletion src/solver/linear_solver.cu
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ __global__ void SolveKernel(SolveDevice* device)
}
}
}
void SolveKernelDriver(CudaLinearSolverParam& linearSolver,CudaLinearSolverParam& sparseMatrix, CudaMatrixParam& denseMatrix)
void SolveKernelDriver(CudaLinearSolverParam& linearSolver,CudaSparseMatrixParam& sparseMatrix, CudaMatrixParam& denseMatrix)
{
//create device pointer
std::pair<size_t, size_t>* d_nLij_Lii;
Expand Down

0 comments on commit e2a5647

Please sign in to comment.