getrs¶
Solves a system of linear equations with an LU-factored square
coefficient matrix, with multiple right-hand sides. This routine belongs
to the oneapi::mkl::lapack namespace.
Description¶
The routine solves for X the following systems of linear
equations:
Equation |
Condition |
|---|---|
|
if |
|
if |
|
if |
Before calling this routine, you must call getrf to compute the LU factorization of A.
API¶
Syntax¶
namespace oneapi::mkl::lapack {
void getrs(cl::sycl::queue &queue,
mkl::transpose trans,
std::int64_t n,
std::int64_t nrhs,
cl::sycl::buffer<T> &a,
std::int64_t lda,
std::int64_t *ipiv,
cl::sycl::buffer<T> &b,
std::int64_t ldb,
cl::sycl::buffer<T> &scratchpad,
std::int64_t scratchpad_size)
}
getrs supports the following precisions and devices:
T |
Devices supported |
|---|---|
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
Input Parameters¶
- queue
Device queue where calculations will be performed.
- trans
Indicates the form of the equations:
If
trans=mkl::transpose::nontrans, thenA*X = Bis solved forX.If
trans=mkl::transpose::trans, thenAT*X = Bis solved forX.If
trans=mkl::transpose::conjtrans, thenAH*X = Bis solved forX.- n
The order of the matrix
Aand the number of rows in matrixB(0≤n).- nrhs
The number of right-hand sides (
0≤nrhs).- a
Buffer holding the array containing the factorization of the matrix
A, as returned by getrf. The second dimension of a must be at leastmax(1, n).- lda
The leading dimension of a.
- ipiv
Array, size at least
max(1, n). The ipiv array, as returned by getrf.- b
The array b contains the matrix
Bwhose columns are the right-hand sides for the systems of equations. The second dimension of b must be at leastmax(1,nrhs).- ldb
The leading dimension of b.
- scratchpad
Buffer holding scratchpad memory to be used by the routine for storing intermediate results.
- scratchpad_size
Size of scratchpad memory as a number of floating point elements of type
T. Size should not be less than the value returned by the getrs_scratchpad_size function.
Output Parameters¶
- b
The buffer b is overwritten by the solution matrix
X.
Exceptions¶
Exception |
Description |
|---|---|
|
This exception is thrown when problems occur during calculations. You can obtain the info code of the problem using the info() method of the exception object: If If If |
Known Limitations¶
For GPU support, errors are reported through the info parameter, but computation does not halt for an algorithmic error.