MAGMA 2.10.0
Matrix Algebra for GPU and Multicore Architectures
Loading...
Searching...
No Matches
single-complex precision

Functions

magma_int_t magma_cjacobisetup_matrix (magma_c_matrix A, magma_c_matrix *M, magma_c_matrix *d, magma_queue_t queue)
 Prepares the Matrix M for the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_cjacobisetup_diagscal (magma_c_matrix A, magma_c_matrix *d, magma_queue_t queue)
 It returns a vector d containing the inverse diagonal elements.
 
magma_int_t magma_cjacobisetup_vector (magma_c_matrix b, magma_c_matrix d, magma_c_matrix *c, magma_queue_t queue)
 Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_cjacobisetup (magma_c_matrix A, magma_c_matrix b, magma_c_matrix *M, magma_c_matrix *c, magma_queue_t queue)
 Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_cjacobiiter (magma_c_matrix M, magma_c_matrix c, magma_c_matrix *x, magma_c_solver_par *solver_par, magma_queue_t queue)
 Iterates the solution approximation according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_cjacobiiter_precond (magma_c_matrix M, magma_c_matrix *x, magma_c_solver_par *solver_par, magma_c_preconditioner *precond, magma_queue_t queue)
 Iterates the solution approximation according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_ccompactActive (magma_int_t m, magma_int_t n, magmaFloatComplex_ptr dA, magma_int_t ldda, magmaInt_ptr active, magma_queue_t queue)
 ZCOMPACTACTIVE takes a set of n vectors of size m (in dA) and an array of 1s and 0sindicating which vectors to compact (for 1s) and which to disregard (for 0s).
 
magma_int_t magma_cgeelltmv (magma_trans_t transA, magma_int_t m, magma_int_t n, magma_int_t nnz_per_row, magmaFloatComplex alpha, magmaFloatComplex_ptr dval, magmaIndex_ptr dcolind, magmaFloatComplex_ptr dx, magmaFloatComplex beta, magmaFloatComplex_ptr dy, magma_queue_t queue)
 This routine computes y = alpha * A^t * x + beta * y on the GPU.
 
magma_int_t magma_cgemvmdot (magma_int_t n, magma_int_t k, magmaFloatComplex_ptr v, magmaFloatComplex_ptr r, magmaFloatComplex_ptr d1, magmaFloatComplex_ptr d2, magmaFloatComplex_ptr skp, magma_queue_t queue)
 This is an extension of the merged dot product above by chunking the set of vectors v_i such that the data always fits into cache.
 
magma_int_t magma_cjacobi_diagscal (magma_int_t num_rows, magma_c_matrix d, magma_c_matrix b, magma_c_matrix *c, magma_queue_t queue)
 Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.
 
magma_int_t magma_cjacobiupdate (magma_c_matrix t, magma_c_matrix b, magma_c_matrix d, magma_c_matrix *x, magma_queue_t queue)
 Updates the iteration vector x for the Jacobi iteration according to x=x+d.
 
magma_int_t magma_cjacobispmvupdate (magma_int_t maxiter, magma_c_matrix A, magma_c_matrix t, magma_c_matrix b, magma_c_matrix d, magma_c_matrix *x, magma_queue_t queue)
 Updates the iteration vector x for the Jacobi iteration according to x=x+d.
 
magma_int_t magma_cgemvmdot_shfl (magma_int_t n, magma_int_t k, magmaFloatComplex_ptr v, magmaFloatComplex_ptr r, magmaFloatComplex_ptr d1, magmaFloatComplex_ptr d2, magmaFloatComplex_ptr skp, magma_queue_t queue)
 This is an extension of the merged dot product above by chunking the set of vectors v_i such that the data always fits into cache.
 

Detailed Description

Function Documentation

◆ magma_cjacobisetup_matrix()

magma_int_t magma_cjacobisetup_matrix ( magma_c_matrix A,
magma_c_matrix * M,
magma_c_matrix * d,
magma_queue_t queue )

Prepares the Matrix M for the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

It returns the preconditioner Matrix M and a vector d containing the diagonal elements.

Parameters
[in]Amagma_c_matrix input matrix A
[in]Mmagma_c_matrix* M = D^(-1) * (L+U)
[in,out]dmagma_c_matrix* vector with diagonal elements of A
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobisetup_diagscal()

magma_int_t magma_cjacobisetup_diagscal ( magma_c_matrix A,
magma_c_matrix * d,
magma_queue_t queue )

It returns a vector d containing the inverse diagonal elements.

Parameters
[in]Amagma_c_matrix input matrix A
[in,out]dmagma_c_matrix* vector with diagonal elements
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobisetup_vector()

magma_int_t magma_cjacobisetup_vector ( magma_c_matrix b,
magma_c_matrix d,
magma_c_matrix * c,
magma_queue_t queue )

Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

Returns the vector c

Parameters
[in]bmagma_c_matrix RHS b
[in]dmagma_c_matrix vector with diagonal entries
[in]cmagma_c_matrix* c = D^(-1) * b
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobisetup()

magma_int_t magma_cjacobisetup ( magma_c_matrix A,
magma_c_matrix b,
magma_c_matrix * M,
magma_c_matrix * c,
magma_queue_t queue )

Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

Parameters
[in]Amagma_c_matrix input matrix A
[in]bmagma_c_matrix RHS b
[in]Mmagma_c_matrix* M = D^(-1) * (L+U)
[in]cmagma_c_matrix* c = D^(-1) * b
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobiiter()

magma_int_t magma_cjacobiiter ( magma_c_matrix M,
magma_c_matrix c,
magma_c_matrix * x,
magma_c_solver_par * solver_par,
magma_queue_t queue )

Iterates the solution approximation according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

This routine takes the iteration matrix M as input.

Parameters
[in]Mmagma_c_matrix input matrix M = D^(-1) * (L+U)
[in]cmagma_c_matrix c = D^(-1) * b
[in,out]xmagma_c_matrix* iteration vector x
[in,out]solver_parmagma_c_solver_par* solver parameters
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobiiter_precond()

magma_int_t magma_cjacobiiter_precond ( magma_c_matrix M,
magma_c_matrix * x,
magma_c_solver_par * solver_par,
magma_c_preconditioner * precond,
magma_queue_t queue )

Iterates the solution approximation according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

Parameters
[in]Mmagma_c_matrix input matrix M = D^(-1) * (L+U)
[in,out]xmagma_c_matrix* iteration vector x
[in,out]solver_parmagma_c_solver_par* solver parameters
[in]precondmagma_c_precond_par* precond parameters
[in]queuemagma_queue_t Queue to execute in.

◆ magma_ccompactActive()

magma_int_t magma_ccompactActive ( magma_int_t m,
magma_int_t n,
magmaFloatComplex_ptr dA,
magma_int_t ldda,
magmaInt_ptr active,
magma_queue_t queue )

ZCOMPACTACTIVE takes a set of n vectors of size m (in dA) and an array of 1s and 0sindicating which vectors to compact (for 1s) and which to disregard (for 0s).

Parameters
[in]mINTEGER The number of rows of the matrix dA. M >= 0.
[in]nINTEGER The number of columns of the matrix dA. N >= 0.
[in,out]dACOMPLEX REAL array, dimension (LDDA,N) The m by n matrix dA.
[in]lddaINTEGER The leading dimension of the array dA. LDDA >= max(1,M).
[in]activeINTEGER array, dimension N A mask of 1s and 0s showing if a vector remains or has been removed
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cgeelltmv()

magma_int_t magma_cgeelltmv ( magma_trans_t transA,
magma_int_t m,
magma_int_t n,
magma_int_t nnz_per_row,
magmaFloatComplex alpha,
magmaFloatComplex_ptr dval,
magmaIndex_ptr dcolind,
magmaFloatComplex_ptr dx,
magmaFloatComplex beta,
magmaFloatComplex_ptr dy,
magma_queue_t queue )

This routine computes y = alpha * A^t * x + beta * y on the GPU.

Input format is ELL.

Parameters
[in]transAmagma_trans_t transposition parameter for A
[in]mmagma_int_t number of rows in A
[in]nmagma_int_t number of columns in A
[in]nnz_per_rowmagma_int_t number of elements in the longest row
[in]alphamagmaFloatComplex scalar multiplier
[in]dvalmagmaFloatComplex_ptr array containing values of A in ELL
[in]dcolindmagmaIndex_ptr columnindices of A in ELL
[in]dxmagmaFloatComplex_ptr input vector x
[in]betamagmaFloatComplex scalar multiplier
[out]dymagmaFloatComplex_ptr input/output vector y
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cgemvmdot()

magma_int_t magma_cgemvmdot ( magma_int_t n,
magma_int_t k,
magmaFloatComplex_ptr v,
magmaFloatComplex_ptr r,
magmaFloatComplex_ptr d1,
magmaFloatComplex_ptr d2,
magmaFloatComplex_ptr skp,
magma_queue_t queue )

This is an extension of the merged dot product above by chunking the set of vectors v_i such that the data always fits into cache.

It is equivalent to a matrix vecor product Vr where V contains few rows and many columns. The computation is the same:

skp = ( <v_0,r>, <v_1,r>, .. )

Returns the vector skp.

Parameters
[in]nint length of v_i and r
[in]kint

vectors v_i

Parameters
[in]vmagmaFloatComplex_ptr v = (v_0 .. v_i.. v_k)
[in]rmagmaFloatComplex_ptr r
[in]d1magmaFloatComplex_ptr workspace
[in]d2magmaFloatComplex_ptr workspace
[out]skpmagmaFloatComplex_ptr vector[k] of scalar products (<v_i,r>...)
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobi_diagscal()

magma_int_t magma_cjacobi_diagscal ( magma_int_t num_rows,
magma_c_matrix d,
magma_c_matrix b,
magma_c_matrix * c,
magma_queue_t queue )

Prepares the Jacobi Iteration according to x^(k+1) = D^(-1) * b - D^(-1) * (L+U) * x^k x^(k+1) = c - M * x^k.

Returns the vector c. It calls a GPU kernel

Parameters
[in]num_rowsmagma_int_t number of rows
[in]bmagma_c_matrix RHS b
[in]dmagma_c_matrix vector with diagonal entries
[out]cmagma_c_matrix* c = D^(-1) * b
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobiupdate()

magma_int_t magma_cjacobiupdate ( magma_c_matrix t,
magma_c_matrix b,
magma_c_matrix d,
magma_c_matrix * x,
magma_queue_t queue )

Updates the iteration vector x for the Jacobi iteration according to x=x+d.

*(b-t) where d is the diagonal of the system matrix A and t=Ax.

Parameters
[in]tmagma_c_matrix t = A*x
[in]bmagma_c_matrix RHS b
[in]dmagma_c_matrix vector with diagonal entries
[out]xmagma_c_matrix* iteration vector
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cjacobispmvupdate()

magma_int_t magma_cjacobispmvupdate ( magma_int_t maxiter,
magma_c_matrix A,
magma_c_matrix t,
magma_c_matrix b,
magma_c_matrix d,
magma_c_matrix * x,
magma_queue_t queue )

Updates the iteration vector x for the Jacobi iteration according to x=x+d.

*(b-Ax)

Parameters
[in]maxitermagma_int_t number of Jacobi iterations
[in]Amagma_c_matrix system matrix
[in]tmagma_c_matrix workspace
[in]bmagma_c_matrix RHS b
[in]dmagma_c_matrix vector with diagonal entries
[out]xmagma_c_matrix* iteration vector
[in]queuemagma_queue_t Queue to execute in.

◆ magma_cgemvmdot_shfl()

magma_int_t magma_cgemvmdot_shfl ( magma_int_t n,
magma_int_t k,
magmaFloatComplex_ptr v,
magmaFloatComplex_ptr r,
magmaFloatComplex_ptr d1,
magmaFloatComplex_ptr d2,
magmaFloatComplex_ptr skp,
magma_queue_t queue )

This is an extension of the merged dot product above by chunking the set of vectors v_i such that the data always fits into cache.

It is equivalent to a matrix vecor product Vr where V contains few rows and many columns. The computation is the same:

skp = ( <v_0,r>, <v_1,r>, .. )

Returns the vector skp.

Parameters
[in]nint length of v_i and r
[in]kint

vectors v_i

Parameters
[in]vmagmaFloatComplex_ptr v = (v_0 .. v_i.. v_k)
[in]rmagmaFloatComplex_ptr r
[in]d1magmaFloatComplex_ptr workspace
[in]d2magmaFloatComplex_ptr workspace
[out]skpmagmaFloatComplex_ptr vector[k] of scalar products (<v_i,r>...)
[in]queuemagma_queue_t Queue to execute in.