Files
tssc-hpcg/src/CheckProblem.hpp
2026-01-18 20:37:50 +08:00

22 lines
543 B
C++

//@HEADER
// ***************************************************
//
// HPCG: High Performance Conjugate Gradient Benchmark
//
// Contact:
// Michael A. Heroux ( maherou@sandia.gov)
// Jack Dongarra (dongarra@eecs.utk.edu)
// Piotr Luszczek (luszczek@eecs.utk.edu)
//
// ***************************************************
//@HEADER
#ifndef CHECKPROBLEM_HPP
#define CHECKPROBLEM_HPP
#include "SparseMatrix.hpp"
#include "Vector.hpp"
void CheckProblem(SparseMatrix& A, Vector* b, Vector* x, Vector* xexact);
#endif // CHECKPROBLEM_HPP