Fork me on GitHub
 All Classes Files Functions Variables Groups Pages
gmres.cu
#include <cusp/monitor.h>
// where to perform the computation
typedef cusp::device_memory MemorySpace;
// which floating point type to use
typedef float ValueType;
int main(void)
{
// create an empty sparse matrix structure (HYB format)
// create a 2d Poisson problem on a 10x10 mesh
// allocate storage for solution (x) and right hand side (b)
cusp::array1d<ValueType, MemorySpace> x(A.num_rows, ValueType(1));
// set initial guess
thrust::fill( x.begin(), x.end(), ValueType(0) );
// set stopping criteria:
// iteration_limit = 100
// relative_tolerance = 1e-6
cusp::monitor<ValueType> monitor(b, 100, 1e-6, 0, true);
int restart = 50;
// solve the linear system A * x = b with the GMRES
cusp::krylov::gmres(A, x, b,restart, monitor);
return 0;
}