double precision
[General solver]

Functions

magma_int_t magma_dbaiter (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * x = b via the block asynchronous iteration method on GPU.
magma_int_t magma_dbicgstab (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.
magma_int_t magma_dbicgstab_merge (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.
magma_int_t magma_dbicgstab_merge2 (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.
magma_int_t magma_dgmres (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real sparse matrix stored in the GPU memory.
magma_int_t magma_diterref (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_d_preconditioner *precond_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.
magma_int_t magma_djacobi (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_queue_t queue)
 Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.
magma_int_t magma_dpastixsetup (magma_d_sparse_matrix A, magma_d_vector b, magma_d_preconditioner *precond, magma_queue_t queue)
 Prepares the PASTIX solver.
magma_int_t magma_dpgmres (magma_d_sparse_matrix A, magma_d_vector b, magma_d_vector *x, magma_d_solver_par *solver_par, magma_d_preconditioner *precond_par, magma_queue_t queue)
 ma Solves a system of linear equations A * X = B where A is a real sparse matrix stored in the GPU memory.

Function Documentation

magma_int_t magma_dbaiter ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * x = b via the block asynchronous iteration method on GPU.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dbicgstab ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.

This is a GPU implementation of the Biconjugate Gradient Stabelized method.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dbicgstab_merge ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.

This is a GPU implementation of the Biconjugate Gradient Stabelized method. The difference to magma_dbicgstab is that we use specifically designed kernels merging multiple operations into one kernel.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dbicgstab_merge2 ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.

This is a GPU implementation of the Biconjugate Gradient Stabelized method. The difference to magma_dbicgstab is that we use specifically designed kernels merging multiple operations into one kernel.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dgmres ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real sparse matrix stored in the GPU memory.

X and B are real vectors stored on the GPU memory. This is a GPU implementation of the GMRES method.

Parameters:
[in] A magma_d_sparse_matrix descriptor for matrix A
[in] b magma_d_vector RHS b vector
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_diterref ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_d_preconditioner *  precond_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.

This is a GPU implementation of the Iterative Refinement method. The inner solver is passed via the preconditioner argument.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in,out] precond_par magma_d_preconditioner* inner solver
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_djacobi ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_queue_t  queue 
)

Solves a system of linear equations A * X = B where A is a real symmetric N-by-N positive definite matrix A.

This is a GPU implementation of the Jacobi method.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dpastixsetup ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_preconditioner *  precond,
magma_queue_t  queue 
)

Prepares the PASTIX solver.

Parameters:
[in] A magma_d_sparse_matrix input matrix A
[in] b magma_d_vector RHS b
[in] precond magma_d_preconditioner* preconditioner parameter
[in] queue magma_queue_t Queue to execute in.
magma_int_t magma_dpgmres ( magma_d_sparse_matrix  A,
magma_d_vector  b,
magma_d_vector *  x,
magma_d_solver_par *  solver_par,
magma_d_preconditioner *  precond_par,
magma_queue_t  queue 
)

ma Solves a system of linear equations A * X = B where A is a real sparse matrix stored in the GPU memory.

X and B are real vectors stored on the GPU memory. This is a GPU implementation of the right-preconditioned GMRES method.

Parameters:
[in] A magma_d_sparse_matrix descriptor for matrix A
[in] b magma_d_vector RHS b vector
[in,out] x magma_d_vector* solution approximation
[in,out] solver_par magma_d_solver_par* solver parameters
[in] precond_par magma_d_preconditioner* preconditioner
[in] queue magma_queue_t Queue to execute in.

Generated on 15 Nov 2014 for MAGMA by  doxygen 1.6.1